关于连字符写法问题
注意:在 properties
定义段中,属性名采用驼峰写法(propertyName
);在 wxml
中,指定属性值时则对应使用连字符写法(component-tag-name property-name=“attr value”
),应用于数据绑定时采用驼峰写法(attr="{{propertyName}}"
)。
这里的propertyName 如果是propertyName2这种命名的话,其对应的连字符写法应该是什么呢?
是property-name-2 还是property-name2?
<my-component property-name-2=“example” />
unexpected character `2`
1 | <!-- 页面的 WXML -->
> 2 | <my-component property-name-2=“example” />
unexpected character `2`
1 | <!-- 页面的 WXML -->
> 2 | <my-component property-name2=“example” />
我这两种写法都会报错呢