项目结构组织
来源:3-1 使用React编写TodoList功能
诺巴蒂
2019-11-12
- 项目组织结构里
把 redux 相关内容和 page 组织在一起有什么好处
pages
|- page1
|- index.js
|- store
|- constants.js
|- actionCreators.js
|- reducer.js
|- index.js
|- page2
|- index.js
|- store
|- constants.js
|- actionCreators.js
|- reducer.js
|- index.js
和把 redux 提出组织相比哪个更好
pages
|-page1
|-page2
constants
|-constant1.js
|-constant2.js
|-index.js
actions
|- actions1.js
|- actions2.js
|- index.js
reduces
|- reduces1.js
|- reduces2.js
|- index.js
我自己也有些想法, 想听听您的看法
2. styled-component 和 css-module
还有这俩 优缺点 比较,也想听听您的看法
写回答
1回答
-
项目越大,第一种方式越好。否则后面你光找对应的文件就能烦死
我个人推荐css-module,前者并不能根本上解决样式隔离问题
032019-11-17
相似问题