小程序自定义组件报错:Some selectors are not allowed in component wxss, including tag name selectors...

时间:2024-03-21 09:29:57

VM3564:1 Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./components/componentLabel/index.wxss:3:1)This wxss file is ignored.

以上错误是由于违反了自定义组件的一些特殊规则所致。
以上英文翻译:组件的wxss文件中禁止使用 标签名选择器,id选择器和属性选择器;

经查文档,有明确说明:
小程序自定义组件报错:Some selectors are not allowed in component wxss, including tag name selectors...
将禁用的选择器用 类选择器 代替后,代码无报错;

经测试,使用 id选择器 和 属性选择器 会出现上述错误。而 标签名选择器 并未出现。