0

这是一个wordpress插件。

所以我有一个隐藏的输入复选框,它会在创建新项目时创建。可以使用滑动切换(复选框)打开/关闭这些项目。通过打开/关闭某些项目进行测试后,使用时似乎正在发布数组var_dump($_POST)

IE:

array (size=3)
  'new_filter' => string '' (length=0)
  'dp_show_filter_15' => string 'yes' (length=3)
  'dp_show_filter_16' => string 'yes' (length=3) 

但只有当一个项目设置为是时,没有返回什么。

即使转储显示更新后的数组,也不会向数据库发布任何值,并且 Firebug 中的输入值是空的。

这是我的php代码:

/*------------------------------------------*/
/*    Check if the filter is active or not  */
/*------------------------------------------*/

$settings="select * from wp_dp_settings";
$filters=$wpdb->get_results($settings,ARRAY_A);

/*------------------------------------------*/
/*    We'll use this to save active states  */
/*------------------------------------------*/

if($_POST){
    ${active}=isset($_POST["dp_show_filter_[$i]"]);
    var_dump($_POST);
    $update="UPDATE wp_dp_settings SET active_filter = '".$active."' WHERE id"; 
    //die( $qry );
    $ok=$wpdb->query($update);

    if($ok==0)
    {
        echo mysql_error();
    }
    else
    { 
        header("Location: admin.php?page=profolio_theme");
        /** Just lettin you know that there was a successful save **/
        echo "<div class='updated settings-error' id='setting-error-settings_updated'> 
        <p><strong>Active State Saved.</strong></p></div>";
    }
}


?>
<td><label for="new_filter">Create a New Filter :<span class="tip">Must be one word</span></label></td>
<td><input type="text" name="new_filter" id="new_filter"/></td>
<td>
</tr>
<?php $object = new stdClass(); ?>
<?php foreach( $filters as $key => $value ) {
    ?>
    <tr>
        <td><label for="show_filter">Show <?php echo $object->$key = $value['filter']; ?> Filter</label></td>        
        <td><input type="checkbox" id="show_filter_<?php echo $object->$key = $value['id']; ?>" <?php //if ( $row['active_filter'] === 'yes' ) { ?>checked="checked"<?php //} ?> name="dp_show_filter_<?php echo $object->$key = $value['id']; ?>" value="<?php echo $object->$key = $value['active_filter']; ?>"/><?php echo $object->$key = $value['active_filter']; ?></td>
        <td><a class="button-primary" href="?page=profolio_theme&del=<?php echo $object->$key = $value['id'];?>">Delete</a></td>
    </tr>
    <?php
    $i++;
}
?>

当我将 id 附加到输入名称时引入了这个问题,因为它过去name="dp_show_filter"不是,name="dp_show_filter_15"但是当我在我的 javascript 中引用输入名称时,这会导致所有项目自然更新。

如果有帮助,你可以看看:

jQuery(document).ready(function(e) {
    var $ = jQuery.noConflict();

        $i = 0;
        customCheckbox = $('.dp_wrap input[type="checkbox"]');
        values = [];

            return customCheckbox.each(function(i) {

                // the dynamic id
                var id = parseInt(this.id.replace("show_filter_", ""));
                var showFilter = $("#show_filter_" + id);

                // the element
                var el = this;

                // Hide checkbox
                $(this).hide();

                // Replace element
                var rep = $('<a href="#"><span></span></a>').addClass('dp-checkbox').insertAfter(this);

                // default state
                if( $(showFilter[i]).val() === 'yes'){
                        $(showFilter).prop('checked', true);
                        $(rep).removeClass('off').addClass('on');
                    } else {
                        $(showFilter).prop('checked', false);
                        $(rep).removeClass('on').addClass('off');
                    }
                if($(this).is(':checked') ) {
                    $(rep).addClass('on');
                } else {
                    $(rep).addClass('off');
                }

                // Click event
                $(rep).click(function(e) {

                    e.preventDefault();

                    if( $(el).is(':checked') ) {

                        values.push($(showFilter).val('no'), ++$i);

                        $(el).prop('checked', false);
                        $(rep).removeClass('on').addClass('off');
                    } else {

                        values.push($(showFilter).val('yes'), ++$i);

                        $(el).prop('checked', true);
                        $(rep).removeClass('off').addClass('on');
                    }
                });
            });
});

所以当我打开/关闭一个项目时,使复选框值是/否,这些值应该被发布到数据库中。注意:当我打开/关闭时,我注意到 Firebug 中的值分别更改为是/否,所以我知道我的 javascript 正在工作。

非常感谢任何和所有帮助,谢谢!

4

1 回答 1

0

1)你使用${active}=isset($_POST["dp_show_filter_[$i]"]);. isset()将返回一个布尔值,你不能回显这个,试试:

$i=3;
$active=isset($_POST["dp_show_filter_[$i]"]);
var_dump($active);
echo $active;

所以 $active 不会在您的查询中打印。

2)${active}不是声明变量 use 的正确方法$active

3) 即使$i已设置,也$_POST["dp_show_filter_[$i]"]指带有键 dp_show_filter[3] ($i=3) 的 $_POST。你的 var_dump 显示这应该是 dp_show_filter_3

所以尝试一些类似的东西:

$id = 17;
$active=isset($_POST['dp_show_filter_'.$id]);
var_dump($_POST);
$update="UPDATE wp_dp_settings SET active_filter = '".($active)?'true':'false'."' WHERE id=".$id; 
$ok=$wpdb->query($update);
于 2013-04-27T18:42:28.150 回答