自己用 rails 很多年,做了不少项目,最近在用 react-native 写个移动端的项目,觉得如果能在移动端也有个类似 rails 的开发框架,开发起来岂不是很爽?
rails 是 mvc 的框架,实现基本思路如下:
m: redux-orm。
v 和 c: react-native component,分为 Presentational 和 Container Components,分别充当 v 和 c 的角色,可以参考这片文章 https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0。
router: 使用 react-native-navigation 来实现。
有兴趣的可以探讨探讨。