获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
.bind(this) 后,函数内就可以和函数外一样使用 this了。好像是这样。
WeUI组件库SearchBar组件调用时this.search.bind(this)的含义和作用?官方文档: https://developers.weixin.qq.com/miniprogram/dev/extended/weui/search.html onLoad 里面这句 this.search.bind(this) 是什么含义和作用呢? bind 是个啥鬼? 谢谢 Page({ data: { inputShowed: false, inputVal: "" }, onLoad() { this.setData({ search: this.search.bind(this) }) }, search: function (value) { return new Promise((resolve, reject) => { setTimeout(() => { resolve([{ text: '搜索结果', value: 1 }, { text: '搜索结果2', value: 2 }]) }, 200) }) }, selectResult: function (e) { console.log('select result', e.detail) },
2020-04-28