当我使用jQuery AJAX在我的页面上提交tinyMCE表单时,实际提交到数据库需要两次点击

时间:2012-07-18 18:39:59

标签: php forms jquery tinymce

我已经尝试了一周以上的不同选择,似乎没有任何效果。更复杂的是,我在页面上有多个表单,所有表单都需要绑定到同一个提交函数。它们都有不同的ID。

以下是我的jQuery的简化版本:

$('form').on('submit', function(form){
    var data = $(this).serialize();
    $.ajax({
        type:       'POST',
        cache:      false,
        url:        'inc/process.php',
        data:       data,
        success:    function(){
                        // The following fires on first AND second submit
                        console.log("Updates have successfully been ajaxed");
        }
    });
    return false;
});

我也尝试使用$('form').submit(),结果相同。

process.php的相关部分:

$query =    'UPDATE     pop_contents
            SET     ';
$id = $_POST['content_id'];
/* to avoid including in MySQL query later */
unset($_POST['content_id']);

$length = count($_POST);
$count = 0;
foreach($_POST as $col => $value){
    $value = trim($value);
    $query .= $col."='".escapeString($value);
    // don't add comma after last value to update
    if(++$count != $length){ $query .= "', "; }
    // add space before WHERE clause
    else{ $query .= "'  "; }
}
$query .= 'WHERE        id='.$id;

$update_result = $mysqli->query($query);

4 个答案:

答案 0 :(得分:26)

经过多次拔毛和咒骂后,我解决了这个问题。

TinyMCE编辑器实例不直接编辑textareas,因此为了提交表单,我需要先从TinyMCE API拨打tinyMCE.triggerSave()。因此,工作代码如下所示:

$('form').on('submit', function(form){
    // save TinyMCE instances before serialize
    tinyMCE.triggerSave();

    var data = $(this).serialize();
    $.ajax({
        type:       'POST',
        cache:      false,
        url:        'inc/process.php',
        data:       data,
        success:    function(){
                        console.log("Updates have successfully been ajaxed");
        }
    });
    return false;
});

答案 1 :(得分:3)

当我通过tinyMce传递Ajax字符串数据时,我很困惑..但是它不能用php保存到数据库...然后我使用

tinyMCE.triggerSave();
event.preventDefault();

然后很好.........

$("#save").click(function() {
tinyMCE.triggerSave();
event.preventDefault();
var data = $(this).serialize();
 var position = $("#position").val();
 var location = $("#job_location").val();
|
|
|
|
 var end_date = $("#end_date").val();
 var dataString = '&position='+ position + '&job_location=' + location + '&job_category=' + category + '&job_des=' + job_des +'&job_res='+ job_res + '&job_requ='+ job_requ + '&start_date='+ start_date + '&end_date='+ end_date;
alert(dataString);
 $.ajax({
 type: "POST",
 url: "regis.php",
 data: dataString,
 success: function(data){

 }
 });
 return false;
 });

答案 2 :(得分:0)

我认为问题在于您不会阻止表单的默认操作。试试这个

$('form').bind( 'submit', function(event) {
   event.preventDefault(); // added
   console.log("Binding"); // changed to console.log
    $.ajax({
      type: "POST",  
      url: "inc/process.php",
      data: $(this).serialize(),
      success: function() {
        console.log("Your updates have successfully been added."); // changed to console.log
      }
    });
});

答案 3 :(得分:0)

另外一个巧妙的技巧是在tinymce编辑器上设置进度状态,为您提供一种添加加载图标的简单方法。 This article in the TinyMCE docs解释了如何做到这一点。

同样从该文章中,使用ed.setContent()将允许您设置在编辑器中显示的文本。我用它来删除编辑器,但只是在成功发布后。