weex使用iconfont的Unicode问题
原创文章,未经允许,请勿转载
weex不能使用网页里用的Unicode编码字符串,比如& #xe702;
需要使用\ue702
这种形式才能正确显示
<div v-for="(item,index) in tabTitles">
<text style="font-family: iconfont;">{{item.icon}}</text>
<text style="font-family: iconfont;">{{'\ue702'}}</text>
</div>
export default {
data() {
return {
tabTitles: [
{ title: "标签1", icon: "\ue702" },
{ title: "标签2", icon: "\ue622" },
{ title: "标签3", icon: "\ue60a" },
{ title: "标签4", icon: "\ue623" },
{ title: "标签5", icon: "\ue715" }
]
};
}
}
来源:悠游悠游,2017-11-13,原文地址:https://yymmss.com/66.html