Ajax表单只提交一次 - 之后需要页面刷新

时间:2014-03-20 22:26:17

标签: javascript jquery ajax ajaxform

我有一个通过ajaxForm();成功提交的表单,但只提交一次。要让它再次提交,需要我刷新页面。

我试图允许用户在一次会话中多次保存表单而不刷新页面,甚至可以设置自动保存功能。

以下代码:

$(document).ready(function(){
    $('#create-card-process').ajaxForm({
        dataType: 'json',
        success: function(data) {
            if (data.success) {
                alert('You successfully added a new entry with entry_id '+data.entry_id);
                console.log(data);
            } else {
                alert('Failed with the following errors: '+data.errors.join(', '));
            }
        }
    });
});

1 个答案:

答案 0 :(得分:0)

解决。 CMS中使用的安全模块在用户提交重复数据时导致安全冲突。

删除它可以解决问题!