jQuery.getJSON and jQuery.parseJSON return [object Object]?

后端 未结 7 1151
没有蜡笔的小新
没有蜡笔的小新 2020-12-08 07:06

EDIT: I\'ve gotten the \"famous question\" badge with this question, so I figured I\'d come back to it and stick what happened to me right at the very tippy

相关标签:
7条回答
  • 2020-12-08 07:51

    $.getJSON( "UI/entidades.json.php", function(data){
    	result = JSON.stringify(data);
    	alert(result)
    	console.log(result)
    })

    0 讨论(0)
提交回复
热议问题