微信小程序开发错误修改方法笔录
1 微信小程序中调用豆瓣API接口时提示错误 GET http://api.douban.com/v2/movie/in_theaters 400 的解决方法如下
[plain] view plain copy
之后在运行就不会出错了。
2 微信小程序提示错误:Cannot read property 'name' of undefined;at pages/movie/movie page processSubject function
这种错误就是在程序某个位置过多查询了,多加了一个 .name
就比如:subject.genres下面就没有了如果加上一个subject.genres.name就会出出现上述错误
3 微信小程序,循环提取数据bug,不能够循环提取已有的数组中的数据。
[html] view plain copy
4 微信小程序的背景无法充满屏幕。
在升级后的客户端默认height值改变了,需要在.wxss文件的最前端加上以下程序
page{
height: 100%;
}
5 当引用其它JS文件时,在全局utils.js里配置完成后在调用窗口声明 var subjectUtil=require("../../utils/subjectUtil.js");
提示错误:Uncaught Error: module "pages/utils/subjectUtil.js" is not defined
解决方法是需要在 utils.js里写如下程序
module.exports={
processSubject(你外部用的函数名): processSubject(内部声明的函数名),
processSubjects: processSubjects
}
6 提示错误:appservice:16 GET http://api.douban.com/v2/movie/in_theaters net::ERR_NETWORK_CHANGED
检查以下自己电脑的网络,或者重启开发者程序。
7 当引用其它JS文件时会提示错误:
WAService.js:3 thirdScriptError
this.setData is not a function;at pages/recommend/recommend loadMovie function;at api request success callback function
TypeError: this.setData is not a function
代码如下