onShareAppMessage: function () {
},
data :{
currentTab:0,
winWidth:0,
winWidth:0,
indicatorDots:false,
autoplay:true,
interval:5000,
duration:1000,
imgUrls:[
"/image/haibao/1.jpg",
"/image/haibao/2.jpg",
"/image/haibao/3.jpg",
"/image/haibao/4.jpg"
]
},
onLoad:function(e){
var page = this;
wx.getSystemInfo({
success: function(res) {
console.log(res);
page.setData({ winWidth:res.windowWidth});
page.setData({winHeight:res.windowHeight});
}
})
this.loadMovies();
},
switchNav:function(e) {
var id = e.currentTarget.id;
this.setData({currentTab:id});
},
loadMovies:function(){
var page=this;
var key = util.getDataKey();
wx.request({
url: 'https://api.douban.com/v2/movie/in_theaters?apikey='+key,
method:'GET',
header:{
"Content-Type":"json"
},
success:function(res){
console.log(res);
var subjects=res.data.subjects;
var size=subjects.length;
var len= parselnt(size /3 ) ;
console.log(len);
console.log(subject);
page.setData({movies:subjects});
page.setData({winHeight:(len +1)*230});
}
})
}
自行检查了很多遍发现没有打错,但是这个错误一直不知道怎么解决,代码是除了问题的代码,求大神解答(还需要看别的代码的话再提供)
这个变量在util中的定义函数怎么写?求教
是的,应该看看是不是引入了util
检查 var key = util.getDataKey(); 是否正确引用,
emmmm那个请教下怎么检查(这是书上的例子我照着打练习用的)
在你写的这个JS最上面是否引入了util ,另外util文件是否存在
是指这个吗,util文件在新建项目的时候就已经存在了
你的util文件里,是否 定义了getDataKey
这算是。。。。没有定义吧?