我正在尝试使用 Ajax 插入我的评论内容。但我相信我在comment_add.php 页面上遇到了问题,想知道是否有人可以帮我看看。
正如我在 firebug 中检查的那样,获取 streamid 似乎有效,但它没有显示任何内容。所以我不知道我是否错过了一些我看不到但其他人可能能够找到的东西。或者,也许我只是没有正确编写comment_add 页面。
形式
echo "<form id='addcomment' method='POST' class='form_statusinput'>
<input type='hidden' name='posterid' id='posterid' value='".$user1_id."'>
<input type='hidden' name='streamid' id='streamid' value='".$streamitem_data['streamitem_id']."'>
<input name='content' id='content' placeholder='Comment..' autocomplete='off'>
<input type='submit' id='button' value='Feed'>
</form>";
AJAX
<script>
$(document).ready(function(){
$("form#addcomment").submit(function(event) {
event.preventDefault();
var content = $("#content").val();
var streamid = $("#streamid").val();
$.ajax({
type: "POST",
url: "comment_add.php",
dataType: "json",
data: {content:content,streamid:streamid},
success: function(response){
$("#commentaddid").prepend(""+content+"");
}
});
});
});
</script>
COMMENT_ADD.PHP
<?php
session_start();
require"include/load.php";
$user1_id=$_SESSION['id'];
if(isset($_POST['streamid'])&isset($_POST['content'])){
if($_POST['content']){
rawfeeds_user_core::add_comment($_POST['streamid'],$_POST['content']);
}
}
?>
功能
public function add_comment($streamid,$content){
$content = mysql_real_escape_string($content);
$content = strip_tags($content);
$content = preg_replace('/(?<!S)((http(s?):\/\/)|(www.))+([\w.1-9\&=#?\-~%;\/]+)/','<a href="http$3://$4$5">http$3://$4$5</a>', $content);
if(strlen($content)>0){
$insert = "INSERT INTO streamdata_comments(comment_poster, comment_streamitem, comment_datetime, comment_content) VALUES (".$_SESSION['id'].",$streamid,UTC_TIMESTAMP(),'$content')";
echo $insert;
$add_post = mysql_query($insert) or die(mysql_error());
}
return;
}