除了我的阵列,一切都很好。当我点击几次时发送count($a)
停留在1。
$catbotreply
是我的消息的回复。
$a=array();
array_unshift($a,$catbotreply);
<script>
$(document).ready(function () {
$("#submit").on("click", function (event) {
event.preventDefault();
$.ajax({
type: "POST",
url: "index.php",
data: $("#catbot").serialize() + "&d=d",
success: function (data) {
console.log(data);
$('#catbotResult').html(data);
}
});
});
});
</script>
if (isset($_POST['msg'])) {
$response.= ' <b class="yousay">You say:</b>' . stripslashes($usermessage) . '<br /><br />';
$response.= '<b class="catbotsays">Bot:</b>' . $catbotreply . '<br /><br />';
$response.= count($a);
echo $response;
}
<form name="catbot" id="catbot" action="<?php echo($_SERVER["PHP_SELF"]); ?>" method="POST">
<b>Msg:</b>
<input type="text" name="msg" size="30" class="text">
<input type="submit" id="submit" name="submit" value="Send!" class="bttn">
<input type="text" name="lastcatbot" value="<?php echo $simplecatbot; ?>">
<input type="text" name="lastwascomm" value="<?php echo $command; ?>">
</form>
<hr>
<div class="leftalign" id="catbotResult">
<b class="yousay">You say:</b>Connected!<br /><br />
<b class="catbotsays">Bot:</b>Connected!<br /><br />
</div>
在我添加ajax功能之前,我使用隐藏文本来保存我的上一个消息,我明白如果我在同一页面中使用echo数据不会刷新,那么为什么我添加了count($a)
到$response
。我的msg和bot回复刷新每个消息,但我的计数保持在1。有谁知道为什么?
答案 0 :(得分:2)
您应该更改在ajax中发送数据的方式。
data: {catbot:$("#catbot").serialize() ,d:"d"},
收到
$_POST['catbot'];
$_POST['d'];