javascript - 高级自定义字段/基于另一个 acf 字段填充选择

标签 javascript php wordpress drop-down-menu advanced-custom-fields

关于高级自定义字段重复器和选择下拉菜单。我目前有一个围绕汽车的网站。

在 wordpress 的选项页面中,我有一个转发器 block ,其中一个文本字段名为“制造商”,另一个文本字段名为“模型”。

文本区域的每一行都填充了一个模型,例如一行:

制造商=奥迪 型号 = A1 A2 A3 A4 等..

在汽车的自定义帖子类型“租赁”中,我为制造商和型号做了 2 个选择下拉菜单。

我可以根据此处的示例 #2 代码自动填充制造商:

http://www.advancedcustomfields.com/resources/dynamically-populate-a-select-fields-choices/

工作正常没问题!

然后使用模型下拉选择,仅当制造商选择下拉更改为然后使用选项页面上中继器的模型自动填充它,仅显示基于制造商的模型...

我知道这需要 ajax 才能这样做..

我有一个示例代码,我在前一周测试过,我可以让它做我想做的事,但是当你进入单辆车时它会是空白的,然后当你选择选项然后保存/更新刷新屏幕后,模型选择下拉列表将再次为空白,尽管通过测试显示它已将数据发送到数据库并已保存。

那么当我保存汽车后它不会变成空白时,我该如何解决这个问题?

这是我测试的代码

PHP

function acf_admin_enqueue( $hook ) {

$type = get_post_type(); // Check current post type
$types = array( 'lease' ); // Allowed post types

if( !in_array( $type, $types ) )
  return; // Only applies to post types in array

 wp_enqueue_script( 'populate-area', get_stylesheet_directory_uri() .    '/library/dist/js/acf_select.js' );

 wp_localize_script( 'populate-area', 'pa_vars', array(
    'pa_nonce' => wp_create_nonce( 'pa_nonce' ), // Create nonce which we    later will use to verify AJAX request
  )
  );
}

add_action( 'admin_enqueue_scripts', 'acf_admin_enqueue' );

// Return models by manufacturer
function model_by_manufacturer( $selected_manufacturer ) {

// Verify nonce
if( !isset( $_POST['pa_nonce'] ) || !wp_verify_nonce( $_POST['pa_nonce'], 'pa_nonce' ) )
die('Permission denied');

// Get manufacturer var
$selected_manufacturer = $_POST['manufacturer'];

// Get field from options page
$manufacturer_and_models = get_field('car_m_and_m', 'options');

// Simplify array to look like: manufacturer => models
  foreach ($manufacturer_and_models as $key => $value) {
    $manufacturer[$value['manufacturer']] = $value['models'];
  }

  // Returns model by manufacturer selected if selected manufacturer exists in array
  if (array_key_exists( $selected_manufacturer, $manufacturer)) {

  // Convert model to array
  $arr_data = explode( ', ', $manufacturer[$selected_manufacturer] );
return wp_send_json($arr_data);

} else {

$arr_data = array();
return wp_send_json($arr_data);
}

die();
}

add_action('wp_ajax_pa_add_areas', 'model_by_manufacturer');
add_action('wp_ajax_nopriv_pa_add_areas', 'model_by_manufacturer');

Javascript:

jQuery(document).ready(function($) {

/* Add default 'Select one'
$( '#acf-field_5548d019b55cb' ).prepend( $('<option></option>').val('0').html('Select Manufacturer').attr({ selected: 'selected', disabled: 'disabled'}) );
*/
/**
 * Get manufacturer option on select menu change
 *
 */
$( '#acf-field_5548d019b55cb' ).change(function () {

    var selected_manufacturer = ''; // Selected value

    // Get selected value
    $( '#acf-field_5548d019b55cb option:selected' ).each(function() {
        selected_manufacturer += $( this ).text();
    });

    $( '#acf-field_5548da7058203' ).attr( 'disabled', 'disabled' );

    // If default is not selected get models for selected manufacturer
    if( selected_manufacturer !== 'Select Manufacturer' ) {
        // Send AJAX request
        data = {
            action: 'pa_add_areas',
            pa_nonce: pa_vars.pa_nonce,
            manufacturer: selected_manufacturer,
        };

        // Get response and populate models select field
        $.post( ajaxurl, data, function(response) {

            if( response ){
                /* Disable 'Select model' field until country is selected
                $( '#acf-field_5548da7058203' ).html( $('<option></option>').val('0').html('Select Model').attr({ selected: 'selected', disabled: 'disabled'}) );
                */
                // Add models to select field options
                $.each(response, function(val, text) {
                    $( '#acf-field_5548da7058203' ).append( $('<option></option>').val(text).html(text) );
                });

                // Enable 'Select Model' field
                $( '#acf-field_5548da7058203' ).removeAttr( 'disabled' );
            }
        });
    }

}).change();
});

我认为这与 Javascript 有关?

如有任何建议或帮助,我们将不胜感激,

提前致谢。

R

最佳答案

我知道这个问题有点老,但它有一些赞成票,所以我认为值得为这个问题发布一个答案。

当您编辑“租赁”帖子时,设置制造商然后使用 AJAX 从其值填充模型字段,模型选择框将填充所选制造商的值。该值未在服务器端验证为“有效”选择,因此它作为 post meta 正确保存在您的数据库中。

再次加载编辑屏幕时,未选择模型的当前值,因为当高级自定义字段为选择字段服务器端生成 HTML 时,没有预选选项。来自 fields/select.php 的以下 PHP walker 被传递给正在编辑的字段/帖子的字段 $choices$values:

function walk( $choices, $values ) {

    // bail ealry if no choices
    if( empty($choices) ) return;


    // loop
    foreach( $choices as $k => $v ) {

        // optgroup
        if( is_array($v) ){

            // optgroup
            echo '<optgroup label="' . esc_attr($k) . '">';


            // walk
            $this->walk( $v, $values );


            // close optgroup
            echo '</optgroup>';


            // break
            continue;

        }


        // vars
        $search = html_entity_decode($k);
        $pos = array_search($search, $values);
        $atts = array( 'value' => $k );


        // validate selected
        if( $pos !== false ) {

            $atts['selected'] = 'selected';
            $atts['data-i'] = $pos;

        }


        // option
        echo '<option ' . acf_esc_attr($atts) . '>' . $v . '</option>';

    }

}

由于在 AJAX 使用制造商字段填充它们之前您的字段没有选择,因此未设置 selected 属性。您也应该填充模型字段服务器端的选项,以便在保存后保留后期编辑屏幕上的值。例如:

function load_current_models($field){

  /** Get posts current manufacturer */
  $current_manufact = get_field('manufacturer');

  /** Manufacturer must be set */
  if($current_manufact) {

    /** Get manufacturers and models from options page */
    $all_models = get_field('car_m_and_m', 'options');

    /** Look for manufacturers models **/
    foreach($all_models as $manufacturer){
      if($manufacturer['manufacturer'] == $current_manufact){
        $field['choices'] = explode(', ', $model['models']);
        return $field;
      } 
    }
  }

  /** Disable models by default */
  $field['disabled'] = true;
  return $field;
}

add_filter('acf/load_field/key=field_5548da7058203', 'load_current_models');

如果尚未设置制造商,这也将在加载时禁用模型字段,我假设是一个新帖子,允许您从导致的 JS 中删除 .change() 调用制造商也选择了在加载时触发的更改事件。否则,这将在那些通过服务器端的选项之后附加重复的模型选项。

您应该更新 JS 以在制造商更改时也删除“旧”选项,否则如果您选择了一个制造商然后将其更改为另一个制造商,则两个制造商型号都将包含在选项中。例如:

// Get models field jQuery object
var models = $('#acf-field_5548da7058203');

// Disable while waiting for server
models.prop('disabled', true);

// Remove old model field options
models.find('option').each(function(){
  if($(this).val() != 0) $(this).remove();
});

// Get response and populate models select field
$.post( ajaxurl, data, function(response) {
  if( response ){

    // Add models to select field options
    $.each(response, function(val, text) {
      models.append( $('<option></option>').val(text).html(text) );
    });

    // Enable 'Select Model' field
    models.removeAttr( 'disabled' );
  }
});

关于javascript - 高级自定义字段/基于另一个 acf 字段填充选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30464072/

相关文章:

javascript - 内容内的颜色编码可编辑吗?

php - 插入到数据库

php - MySQL 中 DELETING 和 INSERTING 时出现重复键错误

php - Elasticsearch日期格式映射

php - 将 WooCommerce "Place order"按钮文本替换为购物车总额和订阅期

Javascript计算浮点值错误

javascript - Mousedown 和 Mouseup 事件上的样式复选框

javascript - 基于ID的多维数组中的对象未被删除-Angular 4/Ionic 3

wordpress - 想要修剪wordpress中的中文字母

css - 调整大小时,WordPress 管理区域有重叠的面板