0

我需要将一个变量$option传递给 php 脚本。位于$option名为“选项”的隐藏字段上。

基本上,用户有一些项目可以通过使用拖放等方式重​​新排列。这些项目存储在一个数组中,一旦项目重新排列,数组就会重新排序并保存。

get_option($option);更改为“get_option('myoption');我必须$option从隐藏字段中获取”无法解决问题。

我花了很多时间在网上搜索示例,解决方案和教程,没有希望,这对我来说太多了。

            array_walk($_POST['order'], 'strip_text_menu_editor');
            $order_array = $_POST['order'];
            $current_menu = get_option($option);    
            $new_order = array();
            foreach($order_array as $order) {
                foreach($current_menu as $key => $value) {
                    if($order == $key) {
                        $new_order[] = $value;
                    }
                }
            }
            update_option($option, $new_order);
            echo '<script type="text/javascript" >
            jQuery(document).ready(function($) {
            var i = 0';
            echo "jQuery('#sortable li').each(function(){
                    var name = 'listItem_' + i;
                    i++;
                });
            });
            </script>";
            die(true);

jQuery

            jQuery(document).ready(function(jQuery) {
                jQuery('#sortable li:odd').addClass('stripe');
                jQuery('#sortable').sortable({
                    handle : '.handle', 
                    update: function(event, ui) {
                        jQuery('#sortable li').removeClass('stripe');
                        jQuery('#sortable li:odd').addClass('stripe');
                        var order = jQuery('#sortable').sortable('toArray');
                        var data = {
                            action: 'menu_editor_special_action',
                            order: order,
                        };
                        jQuery.post(ajaxurl, data, function(response){
                            jQuery('#response').html('Got this from the server: ' + response);
                        });
                    }
                });
            });

HTML

<ul>
<li id="listItem_0" class="">Item A</li>
<li id="listItem_1" class="stripe">Item B</li>
<li id="listItem_2" class="">Item C</li>
<li id="listItem_3" class="stripe">Item D</li>
<li id="listItem_4" class="">Item E</li>
<li id="listItem_5" class="stripe">Item F</li>
</ul>

在 PHP 脚本上调用

function strip_text_menu_editor(&$value, $key) {
        $value = str_replace('listItem_', '', $value);
    }
4

1 回答 1

3

从您发布的 jQuery 片段中我可以看到,您需要将“选项”值添加到帖子中的数据数组中。

var data = {
    action: 'menu_editor_special_action',
    order: order,
    option: $('input[name=option]').val(),  //This part is new
};
jQuery.post(ajaxurl, data, function(response){
    jQuery('#response').html('Got this from the server: ' + response);
});

当然,我不知道您在“选项”中存储了什么样的数据,也不知道您的 get_option() 等函数正在使用它做什么,以了解您需要如何为服务器端代码发送它理解,但这应该让你开始。

于 2012-11-14T17:56:31.523 回答