美文网首页JavaScript
js将字符串转为对象数组

js将字符串转为对象数组

作者: Lia代码猪崽 | 来源:发表于2019-01-15 15:41 被阅读9次

    有时候后台接口传过来的数据就是这么intesting:

    const str = `[{name: 'a', age: 15}, {name: 'b', age: 16}]`
    const arr = JSON.parse(str)
    

    相关文章

      网友评论

        本文标题:js将字符串转为对象数组

        本文链接:https://www.haomeiwen.com/subject/gxxbrqtx.html