我正在使用下面的堆栈构建一个网站。对于这个问题,我认为软件堆栈应该无关紧要。我更想知道我做这个项目的方式是一个好主意还是遵循最佳实践。
- Twitter Bootstrap for the UI
- CherryPy
- jQuery
所以我处理这个项目的方式如下
- Use the Twitter Bootstrap to create the basic layout
- I have one js file and one css file for my project
- Based upon the requirement, let say for this button I need to do something like ajax call
- go to the js file and write like $("#id").click() and do the necessary stuff
- write the necessary action code in python
- Test
所以基本上,我在做什么,修改 html 文件,在我的单个 js 文件中添加我需要的必要代码并执行 python 代码。看到所有这些 java 脚本框架,如backbone.js,require.js 让我觉得也许我没有遵循最好的方法来做到这一点。
从某种意义上说,我想知道的是,假设您有一个页面很少且没有大量用户交互的网站,您会怎么做?我接近它的方式有什么问题吗?最好的方法是什么?
谢谢