安利一个小程序组件API:selectComponent

2018-08-17  本文已影响0人  坚果jimbowhy

如果页面引用了组件,那么就可以使用这个API:
js:
onLoad: function(e) {
var ctx = this;
ctx.selectComponent && null == ctx.notification && (ctx.notification = ctx.selectComponent("#notification"));
......

wxml:
<dialog id="notification" bindonConfirm="onConfirm"></dialog>

json:
{
"usingComponents": {
"dialog": "/utils/Dialog/Dialog"
}
}

上一篇下一篇

猜你喜欢

热点阅读