收藏
回答

npm下属的cell使用出现警告?

报错信息:For developer:Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./npm/miniprogram_npm/weui-miniprogram/cell/cell.wxss:1:1744)


代码:<scroll-view scroll-y="true" style="height:30vh">

<button disabled="{{shareBtn}}" data-id="1" bindtap="btnOpClick" class="op1" style="height:{{op1height}};top: {{op1top}};background-color: {{change}};">{{op1}}

<image wx:if="{{playing}}" src="{{ph_0}}"></image>

</button>

<button disabled="{{shareBtn}}" data-id="2" bindtap="btnOpClick" class="op2" style="height:{{op2height}};top: {{op2top}};background-color: {{change1}};">{{op2}}

<image wx:if="{{playing1}}" src="{{ph_1}}"></image>

</button>

<button disabled="{{shareBtn}}" data-id="3" bindtap="btnOpClick" class="op3" style="height:{{op3height}};top: {{op3top}};background-color: {{change2}};">{{op3}}

<image wx:if="{{playing2}}" src="{{ph_2}}"></image>

</button>

</scroll-view>


回答关注问题邀请回答
收藏

2 个回答

  • 沉冰
    沉冰
    2020-06-18

    你这个报错是因为在组件里面的wxss里使用了元素选择器,id选择器这些东西

    猜测应该是你直接给image标签加了样式

    你可以给所有image标签加一个统一的class,

    然后用这个class去控制image的样式

    2020-06-18
    有用
    回复
  • 微盟
    微盟
    2020-06-17

    这个属于警告不影响你小程序的正常使用的,如果不想出现该警告可以按照提示去修改wxss或者在开发者工具内把你的基础库版本调高一点

    2020-06-17
    有用
    回复 1
    • 💛 💔
      💛 💔
      2020-06-17
      我把基础库调到了使用人数最多的  但是 依然存在这个问题
      2020-06-17
      回复
登录 后发表内容
问题标签