第1小时(source|view)
小moon是个前端开发工程师,此时她正对着电脑看一些前端资讯。。。
此时后端同学走了过来:“你通过这个url来展示些数据”,说着他快速地打开postman,返回的结果如下
body: {
name: 'supershy',
location: '西安'
}
旁边的需求说:“在页面中显示 xxx生活在xxx”,小moon此时很兴奋,so easy,解析下json然后插入到dom中就行了。
为了快速展示,她把返回的数据先写死到变量中,并快速打出了下面的代码
var res = {
body: {
name: 'supershy',
location: '西安'
}
}
function showData(data) {
return data.body.name + '生活在' + data.body.location;
}
document.querySelector('body').innerHTML = showData(res);