var a={a:123,b:"string"}
var b = "{a:123,b:'string'}"
console.log(a)
console.log(b)
alert(a)
alert(b)
//我猜的情况: 接口返回给你前端的数据是字符串,而不是object。
//1 试着将字符串转成object,推荐转成json 对象。
//2 和后端协商http的请求的返回值。把response type 改为使用json,而不是text,html之类的文本
网页链接
需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<script>标签,输入js代码:var json = {'name': 'Alice', 'age': 16}document.body.innerText = json.name。
3、浏览器运行index.html页面,此时json的对象的name属性被成功取到并打印了出来。