美文网首页
百度小程序的一些坑

百度小程序的一些坑

作者: 摸不到的颜色 | 来源:发表于2018-10-15 17:25 被阅读0次

    1、自定义组件名不能用驼峰命名
    正确:<shop-head model="{{model}}"></shop-head>

    错误:<shopHead model="{{model}}"></shopHead>
    2、自定义组件内不支持iconfont,编译时将/去掉了

        官方回复10月中旬支持
        暂时方案,拷贝一份iconfont.css作为自定义组件的iconfont,加双\\

    3、自定义组件支持template,但是不支持template嵌套

    不支持

    4、自定义组件仅支持class 选择器

    5、s-for与s-if不可在同一标签下同时使用。


    <view class="goodsTag theme-bgc" style="{{customTheme.bgc}}"  s-for="item.tag.goodsBizTag" s-for-item="item3" s-key="index3" s-if="item.tag && item.tag.goodsBizTag && item3.type==1501">{{item3.text}}</view>

    错误!

    相关文章

      网友评论

          本文标题:百度小程序的一些坑

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