84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
项目和官方weex-hackernews唯一不同的就是使用了sass,其他没发现不同,是使用weex init初始化的vue工程,build后通过网页访问app.web.js是可以正常显示样式的。但是使用weex playground访问app.weex.js功能都正常,就是没有样式。 查看 dist中的app.weex.js文件,里面可以找到style代码。不知道问题在哪?请问如何解决
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
用sass了,你用了嵌套吧?
Weex 中只支持单个类名选择器,不支持关系选择器,也不支持属性选择器。
/* 支持单个类名选择器 */ .one-class { font-size: 36px; } /* 不支持关系选择器 */ .parent > .child { padding-top: 10px; } /* 不支持属性选择器,不支持 `v-cloak` 指令 */ [v-cloak] { color: #FF6600; }
这个只是对样式定义的限制,不影响样式类名的使用,在标签中可以添加多个样式类名,如:
<template> <p class="one two three"><p> </template>
感谢楼上的回答 ,已经看到文档的详细说明https://weex.apache.org/cn/re...
用sass了,你用了嵌套吧?
Weex 中只支持单个类名选择器,不支持关系选择器,也不支持属性选择器。
这个只是对样式定义的限制,不影响样式类名的使用,在标签中可以添加多个样式类名,如:
感谢楼上的回答 ,已经看到文档的详细说明https://weex.apache.org/cn/re...