var postsData = require("…/…/…/data/posts-data.js")//只能用相对路径
Page({
onLoad:function(option){
var postId = option.id;
var postData = postsData.postList[postId];//postList属性才是数组
this.setData.postData = postData;
console.log(postData.headImgSrc);
}
})