我一直在寻找一种简单、干净和灵活的方式来在POST
orGET
请求之后将错误返回给浏览器。
使用 jQuery 的示例 AJAX 请求:
$.ajax({
data : {
method : 'example',
input : 1
},
success : function(i){
if(i != 'succes'){
alert(i);
}
}
});
服务器端响应:
switch($_POST['method']){
case 'example':
if($_POST['input'] == 1) {
echo 'succes';
} else {
echo 'error';
// or
die('error');
}
break;
}
这只是感觉不够扎实。有谁知道捕获错误与消息相结合的好方法?