Ruby on Rails 开发流程
我们是一个小团队,即将开始使用 RoR 在韩国开发一个成功的美国网络应用程序的本地化版本。
我们的问题是:您建议我们使用什么流程来开发应用程序?
我们应该从数据模型开始吗? HTML 中的视图然后对其进行编码?选择一个功能,开发它,然后根据需要添加其他功能?
We are a small team that is about to start developing a localized version of a successful US web app in Korea, using RoR.
Our question is: What process would you recommend we use to go about developing the app?
Should we start with the data models? The views in HTML and then code them? Take a single feature, develop it and then add additional features as necessary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题没有正确答案。这取决于太多因素,例如:
我会针对这些因素的不同组合使用不同的开发方法。
编辑:您可以尝试 https://softwareengineering.stackexchange.com/ 解决这个问题。
This question has no right answer. It depends on too many factors, such as:
I would use different development method for different combination of those factors.
EDIT: You can try https://softwareengineering.stackexchange.com/ with this question.
我不同意合唱团唱的“没有正确答案”,尽管我同意这个问题对于 Stack Overflow 来说并不理想。但是,我想我确实有一个答案......
我认为你应该使用 敏捷开发方法并按重要性顺序逐步添加功能。
某人或小团队应该优先考虑功能。
您应该始终拥有一个可用的应用程序。
一次添加一件事。编写测试。一次使用一个用户故事迭代开发整个系统。
I'm going to disagree with the chorus singing "no right answer", though I will agree that this question is not ideal for Stack Overflow. However, I think I do have an answer...
I think you should use an Agile development method and incrementally add features in order of importance.
Someone or a small team should prioritize features.
You should always have a working application.
Add one thing at a time. Write tests. Iteratively develop your entire system with one user story at a time.