Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

封装的抽象组件自定义传递css类名,在开启了css module的情况下,微信小程序正常编译 H5端类名显示错误 #4102

Closed
wsyxl365 opened this issue Aug 7, 2019 · 4 comments
Assignees

Comments

@wsyxl365
Copy link

wsyxl365 commented Aug 7, 2019

问题描述
[问题描述:站在其它人的角度尽可能清晰地、简洁地把问题描述清楚]
在开启css module + scss的情况下,自行封装的抽象组件可以传递一个css 类名去覆盖改变自身的固有样式,微信小程序端组件自身的样式加上传递进来的样式是经过css module的预设条件‘[name][local]_[hash:base64:5]’去编译生成类名的,但是在H5端传递进来的样式原来输出类名,导致样式无法加载
复现步骤
[复现问题的步骤]

  1. 微信小程序正常,2个类名正常编译:
    1
    2

2.页面中调用抽象组件Card并传入相应的css类名:
4

  1. H5端传递进来的样式没有编译,导致页面样式错乱:
    3

期望行为
微信端和H5传递的类名被Css module处理后保持一致

报错信息

系统信息

Taro v1.2 及以上版本已添加 taro info 命令,方便大家查看系统及依赖信息,运行该命令后将结果贴下面即可。

  • 操作系统: [e.g. Windows 7]
  • Taro 版本 [e.g. v1.3.9]
  • Node.js 版本 [e.g. v10.16.0]
  • 报错平台 [h5]

补充信息
1.经打印验证后,举例: 在H5端通过import $test from 'test.module.scss' 引入后,console.log $test后,其实传递的css 类名已经通过了css module的处理
5
但是最后f12审查元素后,还是原来的类名
暂时hack解决的办法:
6
通过props中获取key值向对应的处理后的类名

@taro-bot
Copy link

taro-bot bot commented Aug 7, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@taro-bot
Copy link

taro-bot bot commented Aug 15, 2019

CC @Littly

@Littly
Copy link
Contributor

Littly commented Aug 15, 2019

遗憾 H5端hash后的类名是用props传进去的,组件确实也只能从props拿到传递的类名。通过process.env.TARO_ENV判断环境,再设置类名吧~

@wsyxl365
Copy link
Author

遗憾 H5端hash后的类名是用props传进去的,组件确实也只能从props拿到传递的类名。通过process.env.TARO_ENV判断环境,再设置类名吧~

好的 知道了 首先感谢百忙中抽空回答 其次想请问下后期迭代中会对这块进行考虑吗 毕竟组件化开发中我抽象组件的类名覆盖重写样式也很正常 谢谢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants