0

我正在尝试在我的主题选项页面中创建动态行,并尝试将这些数据保存在序列化数据中。 这是它看起来的样子

随着我添加工作经验,添加了新行..现在我只想将此值保存在序列化数据中并相应地对它们进行排序(可能是按开始日期或序列号。)

我的查询代码

jQuery('a.add-author').click(function(event) {
    alert("asdas");
    event.preventDefault();
    counter++;
    var newRow = jQuery('<tr><td><input style="width:200px" type="text" name="designation' + counter + '"/></td>
    <td><input style="width:200px" type="text" id="start_date' + counter +'" name="start_date' + counter + '"/></td>
    <td><input style="width:200px" id="end_date' + counter +'" type="text" name="end_date' + counter + '"/></td></tr>');
    jQuery('table.authors-list').append(newRow);
    $("#start_date"+ counter).datepicker();
    $("#end_date"+ counter).datepicker();

});

我的选项数组

array(
    "name" => "Designation",
    "desc" => "Enter your Designation of company.",
    "id" => $shortname."_designation",
    "type" => "workexp",
    "std" => ""
)

我的 HTML 代码类型 workexp

case 'workexp':

?>
<a href="#" title="wrk_exp" class="add-author">Add Work Experience</a>
<table class="authors-list" border="1" bordercolor="#ddd" 
style="background-color:#F5F5F5" width="100%" cellpadding="3" cellspacing="3">
    <tr><td>Designation</td><td>StartDate</td><td>EndDate</td></tr>
    <tr>
        <td><input style="width:200px" type="text" name="designation"/></td>
        <td><input style="width:200px" type="text" id="start_date" name="start_date"/></td>
        <td><input style="width:200px" type="text" id="end_date" name="end_date"/></td>
    </tr>
</table>

<?php
break;

保存按钮后我的代码

if ( $_GET['page'] == basename(__FILE__) ) {

    if ( 'save' == $_REQUEST['action'] ) {

        foreach ($options as $value) {
            update_option( $value['id'], $_REQUEST[ $value['id'] ] );
        }

        foreach ($options as $value) {
            if( isset( $_REQUEST[ $value['id'] ] ) ) {
                update_option( $value['id'], $_REQUEST[ $value['id'] ]  );
            } else {
                delete_option( $value['id'] );
            }
        }

        header("Location: admin.php?page=theme-options.php&saved=true");
        die;
    } 
}
4

1 回答 1

0

在您的服务器端,您必须先将值转换为数组。然后update_option将自动序列化数据。

于 2013-07-20T15:38:56.387 回答