微信小程序开发中var that =this的基本用法
阅读 30284 · 发布日期 2020-08-24 17:26 · 温州优光网络科技有限公司|建站|APP小程序制作|做网站SEO推广优化
【摘要】
在微信小程序开发中,var that =this的声明很常见。举个例子,代码如下!示例代码11 //index.js
2 Page({
3
4 data: {
5 toastHidden: true,
6 },
7
8 loadData: function () {... 【温州小程序开发,温州微信公众号,平阳做网站,平阳网站建设公司,平阳小程序商城制作,昆阳万全做网站,鳌江水头小程序,萧江腾蛟微信公众号,山门顺溪南雁海西南麂凤卧麻步怀溪网络网店服务,政采云网店管理服务】...
在微信小程序开发中,var that =this的声明很常见。
举个例子,代码如下!示例代码11 //index.js 2 Page({
3 4 data: {
5 toastHidden: true, 6 }
, 7 8 loadData: function () {
9 var that = this//这里声明了that;将this存在that里面 10 wx.request({
11 url: '
test.php'
, 12 data: {
a: '
a'
, b: '
b'
}
, 13 header: {
14 '
content-type'
: '
application/json'
15 }
, 16 success(res) {
17 that.setData({
toastHidden: false }
) //这里使用了that,这样就可以获取Page({
}
)对象 18 }
, 19 }
) 20 }
21 22 }
)在代码中第9行声明了var that =this;第17行使用了that。
如果不声明var that =this,且that改成this,代码如下!示例代码21 //index.js 2 Page({
3 4 data: {
5 toastHidden: true, 6 }
, 7 8 loadData: function () {
9 wx.request({
10 url: '
test.php'
, 11 data: {
a: '
a'
, b: '
b'
}
, 12 header: {
13 '
content-type'
: '
application/json'
14 }
, 15 success(res) {
16 this.setData({
toastHidden: false }
) 17 }
, 18 }
) 19 }
20 21 }
)此时运行代码就会报以下错误!从报错中得知setData这个属性读不到,为何读不到?这跟this关键字的作用域有关!this作用域分析:
1.在Page({
}
)里面,this关键字指代Page({
}
)整个对象2.因此可以通过this关键字访问或者重新设置Page({
}
)里data的变量3.然而在loadData函数中使用了wx.request({
}
)API这个方法导致在wx.request({
}
)里没办法使用this来获取Page({
}
)对象4.虽然在wx.request({
}
)里没法使用this获取Page({
}
)对象,但是可以在wx.request({
}
)外面先把this存在某个变量中,所以就有了var that =this 这个声明。
此时that指代Page({
}
)整个对象,这样子就可以在wx.request({
}
)里使用that访问或者重新设置Page({
}
)里data的变量推荐教程:
《JS教程》以上就是微信小程序开发中var that =this的基本用法的详细内容,更多请关注php中文网其它相关文章!
微信
分享相关标签:
前端 小程序 javascript css3 html5本文转载于:
segmentfault,如有侵犯,请联系a@php.cn删除
上一篇:
什么是骨架屏(Skeleton Screen)?
下一篇:
微信小程序wx.request请求数据报错相关文章相关视频自学微信小程序从零到一:
项目构建后http请求封装微信小程序-canvas生成图片并保存到本地怎样将微信小程序发送到桌面?微信小程序实时监听less文件编译成wxss文件,...微信小程序开发中var that =this的基本...初识微信小程序(2)初识微信小程序(3)初识微信小程序(4) [温州做小程序]