This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 903
wxc-cell组件里定义的cell-arrow-icon,为什么不把position: absolute样式拿掉 #45
Comments
是当时对很老版本weex的一个兼容,谢谢提醒, |
插个题外话,在<text>元素中,如果设置了字体为iconfont,如果通过Mustache方式绑定话,x字符会显示为一个类似打印机图标.网上找了原因.
通过引入he模块,he.decode()自己进行解码. |
he 的 encode、encode转换码全部在本地,也是没有办法的,的确很大,我们这边为了减少包体积weex的图标一般会使用cdn形式的图片 |
我们app经常在地下室类似没信号的地方使用.导致需要考虑一个离线的情况.无法通过cdn方式.实在不行.我还是走本地加载图片的方式吧.thank you |
@phoenixsky 如果觉得he大可以用String.fromCharCode,这是我字体图标的一个处理。 if (/^&#x/.test(this.fontCode)) {
return String.fromCharCode(this.fontCode.replace(/^&#x/, '0x'))
} else {
return String.fromCharCode('0x' + this.fontCode)
} |
@hizhengfu 👌. Thank U,
|
@phoenixsky 感谢!不过代码里的正则有点问题,不能匹配到类似于
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
改为
这样动态设置cell的高度时,图标还能自动居中.
还是说有别的原因?
The text was updated successfully, but these errors were encountered: