美文网首页
安利一个小程序组件API:selectComponent

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

作者: 坚果jimbowhy | 来源:发表于2018-08-17 11:52 被阅读0次

    如果页面引用了组件,那么就可以使用这个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"
    }
    }

    相关文章

      网友评论

          本文标题:安利一个小程序组件API:selectComponent

          本文链接:https://www.haomeiwen.com/subject/wbpzbftx.html