作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
let awards = ["earth","sun","moon"];
let a = JSON.stringify(awards);
console.log(a);
Result: -["earth","sun","moon"] // no difference?
在我的数据库文本字段中,我有这个:
{"earth","sun","moon"};
更新
由此我得到 php 数组:
$arr = json_decode($data['planets'], true);
["earth","sun","moon"]
和 {"earth","sun","moon"}
有什么区别
以及如何从js数组中获取{"earth","sun","moon"}
- ["earth","sun","moon"];
?
最佳答案
对象的格式为 { key : value }。例如, { "Earth": "Planet"} 是一个对象。但 {"Earth", "Planet"} 不是一个对象。
["earth","sun","moon"] 是一个字符串数组。没有办法将字符串数组转换为对象,因为该操作实际上没有意义。
您确定数据库文本字段中没有缺少冒号吗?
关于javascript - 如何从js数组中获取json对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54754609/
我是一名优秀的程序员,十分优秀!