vue uniapp 字符串转对象,对象转字符串
vue uniapp 字符串转对象,对象转字符串
·
//售前服务
shouqianfuwu(){
this.$api.getArchives({
page: 1,
channel: 39,
model: -1,
}).then(res => {
console.log('售前服务',res);
let str = JSON.stringify(res); //对象转字符串
console.log('售前服务字符串', str);
let obj = JSON.parse(str); //字符串转对象
console.log('售前服务对象', obj);
this.shouqianlist = res.data.pageList.data;
});
},
更多推荐
已为社区贡献1条内容
所有评论(0)