我在视图中有这个脚本:
<script type="text/javascript">
$(document).ready(function() {
$("#addbrand").click(function() {
$.ajax({
url : '../brands/add',
data : {
name : "test",
shortname : "tst"
},
dataType : 'json',
success : function(html, textStatus) {
alert('Success ' + textStatus + html);
},
error : function(xhr, textStatus, errorThrown) {
alert('An error occurred! ' + errorThrown);
}
});
});
});</script>
在添加控制器中,我有以下几行:
... else if($this->request->is('ajax')){
if ($this->Brand->save($this->request->query)) {
// How to send feedback!?
}else{
// How to send feedback!?
}
$this->autoRender = false;
exit();
}
当我单击 addbrand 时,Ajax 操作成功运行,并且我可以在数据库中看到添加的行,但我不知道如何向用户发送错误或成功消息。我已经阅读了几篇教程,但没有一篇是关于 cakephp2.0 的,而一切都在 2.x 中发生了变化。我也读过JSON 和 XML 视图,但不幸的是我什么都不懂!!!我需要发送一个状态码。如果状态正常,那么我应该发送一个字符串数组(实际上是品牌名称),如果状态不正常,我应该发送一个字符串来解释操作未成功完成的原因。如果有人可以帮助我,我将不胜感激。谢谢
更新:
我更改了代码。我使用了 CakeResponse(),现在我的操作是这样的:
if($this->RequestHandler->isAjax()){
if ($this->Brand->save($this->request->query)) {
return new CakeResponse(array('body'=> json_encode(array('val'=>'test ok')),'status'=>200));
}else{
return new CakeResponse(array('body'=> json_encode(array('val'=>'test not ok')),'status'=>500));
}
}
使用 CakeResponse 我可以很好地处理 Jquery 中可能出现的响应。
$("#addbrand").click(function() {
$.ajax({
url : '../brands/add',
data : {
name : "test",
shortname : "tst"
},
dataType : 'json',
success : function(data) {
alert("The brand has been saved");
},
error : function(data) {
alert("Eorror occured");
},
complete : function(data) {
alert($.parseJSON(data.responseText).val);
}
});
});
尽管在我看来现在一切正常,并且我可以通过 Ajax 在客户端和服务器之间以 JSON 格式发送多个变量,但我需要知道它是否是在 CakePHP 中发送 Ajax 响应的标准方式?有没有其他更简单的方法可以做到这一点?