0

我有一个表单和一个 sortable() 列表,用户可以在其中从预先填充的列表中拖动到一个空的 UL 中。用户可以将他们想要的 LI 拖到这个空的 UL 中。还有一个带有几个文本框的表单,用户填写并单击提交。

我可以让 ajaxform 提交表单数据并在 flashdata 会话中显示它,但我无法让它显示 allowed_fields 数据。(这是可排序的列表)。我知道它对它进行序列化,因为运行alert(serializedList);返回元素的序列化列表。

这是生成可排序列表的 JS:

/**
 * sortable ul items
 * 
 * this is used for the add levels page to associate allowed_fields 
 * to a level.
 */
$('.block-list').sortable({
    connectWith: '.block-list',
    placeholder: 'placeholder'
});

这是处理ajaxSubmit的JS:

/**
 * showResponse(data)
 * show the response if the form submission is successful
 * @param  {object} data object of message or success
 * @return {null}
 */
function showResponse(data){
    alert(serializedList);
    if (data.errorStatus == 1){
        $.jGrowl(data.message, { theme: 'error' });
    }else{

        $.jGrowl(data.message, { theme: 'success' });
    }
}//end showResponse()

/** @type {Object} setup the options for the ajax submit forms. */
var submitOptions = {
    success: showResponse,
    beforeSubmit: function(){ serializedList = $("#allowed-fields-list").sortable('serialize');  },
    dataType: 'json',
    resetForm: true ,
    data: { allowed_fields: serializedList }
};      
$("#addlevel-form").ajaxForm(submitOptions);

这是处理表单数据的代码点火器函数..

public function addlevelprocess(){
    $message = array(
        'message' => 'Successfully Added The Level To The Database! WHOA!:'.$this->input->post(),
        'errorStatus' => 0
    );
    $this->session->set_flashdata('post', $this->input->post());
    echo json_encode($message);
}

我怎样才能让 ajaxform 发送表单字段数据和 sortables() 数据。

4

1 回答 1

0

我最终使用了 ajaxSubmit() 并通过数据传递了序列化的表单信息:

$('#addlevel-form').submit(function() {
    /** @type {serialized} serialized array of field IDs for allowed fields */
    var allowedFields = $('#allowed-fields-list').sortable('serialize');
    var formInfo = $('#addlevel-form').formSerialize();
    /** @type {Object} setup the options for the ajax submit forms. */
    var submitOptions = {
        url: '/admin/levels/addlevelprocess.html',
        dataType: 'json',
        success: showResponse,
        data: { allowed_fields: allowedFields, levelInfo: formInfo }
    };      
    $(this).ajaxSubmit(submitOptions);
    return false;
});
于 2011-12-29T14:30:28.600 回答