-1

我想在单击按钮时从文本框中保存数据。我正在为这个任务使用 JQuery AJAX,如下所示。请注意,我在主题功能中制作了这个标签。

function theme_user_post_block($vars)
{

$themeUserCommentInput ='';

$themeUserCommentInput .= '<textarea id="txt_1"rows="1" cols="50"></textarea>';

$themeUserCommentInput .= '<input type="submit" value="Post Comment" align="center"
class="btnPostComment" id="btn_1" />'
return $themeUserCommentInput;
}

这能够向我显示页面内的文本框和按钮。现在这是我的 JS 代码:-

(function($) 
{   
Drupal.behaviors.PostComment= { 

 attach: function (context, settings) {
  $('.btnPostComment', context).click(function (event) {
  var post = "&newcomment=Comment1&logid=log1";
  jQuery.ajax({
              url: 'postcomment',
              type: 'POST',
              dataType: 'json',
              data: post,
              success: function (data) { alert(data); },
              error: function(jqXHR, textStatus, errorThrown){alert(textStatus + 
   errorThrown);}
      });               
     });
    }                    
   }
  })(jQuery); 

接下来,我创建一个带有 URL 名称的菜单页面,如下所示:-

 function postcomment_menu(){
 $items=array();
  $items['postcomment']=array(
   'title'=>t(''),
   'type'=> MENU_CALLBACK,       
   'page callback' => 'user_comment_post',        
   'access arguments' => array('access content'),
 );
 return $items; 
}

function user_comment_post(){
 global $user;
 $cid =  db_insert('user_comment')
    ->fields(array(     
    'comment_user_id' => $user->uid,
    'reference_id' => $_POST['logid'],      
    'comment_desc'=>$_POST['newcomment'],
    'createdon'=>REQUEST_TIME, 
    ))
    ->execute();
  if($cid!=0)
  {
     //GetUserComments($i);
     drupal_json_output("success");
  }
}

所以我已经完成了 jQuery+Ajax 提交功能所需的所有事情。当我按下“发表评论”按钮时,它会在警报中显示“errorundefined”错误。警报显示为 jQuery.AJAX 函数内部错误的结果。此外,自定义菜单回调也没有被调用。

4

2 回答 2

1

将数据作为对象发布...并确保您的帖子网址正确..网址看起来不正确

var post = {newcomment: 'Comment1',logid:'log1'};
于 2013-05-11T15:47:11.773 回答
0

我结束了这个问题。我不知道解决方案或根本原因是什么,但我最终解决了这个问题。我在我的 jQuery.ajax 函数中添加了一行(async: false),一切正常。请看下面的代码:

jQuery.ajax({ url: 'postcomment', type: 'POST', dataType: 'json', async: false, data: post, success: function(data) { alert(data); }, error: function(jqXHR , textStatus, errorThrown) { alert(textStatus + errorThrown); } });

如果有人知道这条线会做什么,请与我们分享。

于 2013-05-12T12:55:25.423 回答