码迷,mamicode.com
首页 > Web开发 > 详细

JSON遇到的问题

时间:2018-06-29 17:17:58      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:item   osi   string   ssi   span   IV   parse   storage   bsp   

  JSON.stringfy

  JSON.parse

报错:unexpected token u in position 0

if (sessionStorage.getItem(‘houseIdList‘)) {
      this.formData.houseIds = JSON.parse(sessionStorage.getItem(‘houseIdList‘)).houseIds
    }

改为

if (sessionStorage.getItem(‘houseIdList‘)) {
      this.formData.houseIds = JSON.parse(JSON.stringify(sessionStorage.getItem(‘houseIdList‘))).houseIds
    }

 

JSON遇到的问题

标签:item   osi   string   ssi   span   IV   parse   storage   bsp   

原文地址:https://www.cnblogs.com/benbendu/p/9244212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!