我的脚本从我的json_encode PHP返回未定义的值
的index.PHP
PHP
$returnThis['user'] = "Robin098";
$returnThis['id'] = "08465";
echo json_encode($returnThis);
?>
sample.html
PHP",function(data) {
alert(data.user);
});
}
我怎样才能解决这个问题?
最佳答案
如果要分析JSON,请使用
原文链接:https://www.f2er.com/jquery/428027.htmljQuery.getJSON
方法而不是.get.此外,请确保正确加载jQuery库.
function clickHere(){
$.getJSON("index.PHP",function(data) {
alert(data.user);
});
}
目前,您正在使用$.get(url,function(data){…}).在此上下文中,data是一个包含服务器响应的字符串:
{"user":"Robin098","id":"80465"}