-
Notifications
You must be signed in to change notification settings - Fork 12
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
个人比较关注的一个问题 #2
Comments
我们这边也有jQ+handlebars的项目,处理项目中的公共模块的方法是在业务结构里,CYB的架构模式是业务逻辑和工程构建完全分开,便于工程工具不止服务于一个项目。 类似如下目录结构:
以上index、list、article都有共同的header和footer模块,把公共模块存放在 public/module/header/index.js 模块级别的逻辑入口,编写模块内所有的业务逻辑。
public/module/header/index.hbs 即handlebars模板文件,用于渲染模块dom。
public/module/header/service.js 用于接口逻辑和数据格式的封装,向上屏蔽接口的变化,保证视图层渲染的稳定。
每个页面的index.html只编写基本的html结构
然后通过页面的入口js在页面中渲染各个模块
无论多么复杂的jQuery项目,借助ES6的模块化,制定一些基本规则,都能让复杂的项目化繁为简。 |
我是昨天看见这个脚手架,翻看了一边文档后,发现 在jQ项目下 没有看见页面公共部分(例如头尾)复用的解决方案,我其实就是奔着这个来的.因为公司项目需求,公用部分较为多,且都是jQ+handlebarsjs的中大型项目. 手写了一个 compile-ejs-loader 实现的复用 但是不是很理想 也可能初次写 思路不是很正确. 所以对于 前后端分离的jQ项目的页面公共部分复用想找一下好的思路,不知道 cyb 会不会开发 此项配置
The text was updated successfully, but these errors were encountered: