admin管理员组文章数量:1340894
I've read dozens of related posts, but I still can't get this to work.
I want to alert the response in jquery I get from PHP.
PHP:
$msg=array();
if(empty($whatever)){
$msg['cenas']="Não há contas";
}else{
$msg['cenas']="Há contas";
};
echo json_encode($msg);
JS:
$.ajax({
url: 'myscript.php',
dataType: 'json',
success: function(response){
alert(response.cenas);
}
});
PHP is echoing
{cenas: "Há contas}" But I can't get it to alert in JS.
I've read dozens of related posts, but I still can't get this to work.
I want to alert the response in jquery I get from PHP.
PHP:
$msg=array();
if(empty($whatever)){
$msg['cenas']="Não há contas";
}else{
$msg['cenas']="Há contas";
};
echo json_encode($msg);
JS:
$.ajax({
url: 'myscript.php',
dataType: 'json',
success: function(response){
alert(response.cenas);
}
});
PHP is echoing
Share Improve this question edited Feb 7, 2014 at 22:39 asked Feb 7, 2014 at 22:22 user882670user882670 3{cenas: "Há contas}" But I can't get it to alert in JS.
-
3
using firebug or chrome developer tools log the alert instead as
console.log(response)
. That will reveal your entire object response and should let you see what's wrong. – Harvey A. Ramer Commented Feb 7, 2014 at 22:25 - @HarveyA.Ramer console.log(response) returns "success" – user882670 Commented Feb 7, 2014 at 22:44
- 1 That means, I believe, that you are just returning a string from your myscript.php file on success. In that case, you'll need to modify it to return an object to do what you're trying to do. This might be instructive: stackoverflow./questions/8649621/… – Harvey A. Ramer Commented Feb 8, 2014 at 3:08
3 Answers
Reset to default 4The php should echo back {"cenas": "Há contas"}
, but what did you get in the alert? Did you get an undefined? If so, try to use jQuery.parseJSON
before alert. e.g:
$.ajax({
url:"myscript.php",
dataType: "json",
success:function(data){
var obj = jQuery.parseJSON(data);
alert(obj.cenas);
}
});
You should tell jQuery to expect (and parse) JSON in the response (although jQuery could guess this correctly...) and you should write your javascript correctly:
$.ajax({
url: 'myscript.php',
dataType: 'json',
success: function(response){
alert(response.cenas);
}
});
Try
$.ajax({
url:"myscript.php",
dataType: "json",
success:function(data){
alert(data.cenas);
}
});
You have a syntax error.
Check out the Docs for $.ajax
本文标签: javascriptHow to alert ajax responseStack Overflow
版权声明:本文标题:javascript - How to alert ajax response - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743655727a2517087.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论