rt 。
不要 todo 之类的项目,最好是线上的。想参考下,谢谢
1
hiwljun 2015-09-06 09:32:38 +08:00
|
3
lidashuang 2015-09-06 13:13:33 +08:00
项目前端很复杂?
|
4
Shared 2015-09-06 13:36:13 +08:00
看 React 的教程就行了, Flask 的作用就是提供 API 给前端
|
6
junnplus OP @lidashuang 也到不是,就是需要一个完整的参考参考,
|
7
lidashuang 2015-09-06 14:04:12 +08:00
@junnplus 前端是大坑
|
8
irainy 2015-09-06 14:19:24 +08:00
Go + React: https://github.com/coodict/coodict.com
|
9
junnplus OP @lidashuang 主要想学学 restful ,然后配合 react
|
10
lidashuang 2015-09-06 14:36:43 +08:00
@junnplus restful 昨不看看 Rails
|
11
junnplus OP @lidashuang 不都一样嘛
|
12
gx 2015-09-06 15:21:36 +08:00
@junnplus 请移步 flux ; github 里有好几个 demo
前后端分离无非就是 ajaxcall 的问题。 please-ajax 、 superagent 这些轻量工具,再用 promise 做 async ; |
13
swirling 2015-09-06 16:17:25 +08:00 via iPhone
😂如果俩都不会的话会很崩的!一个一个玩吧。
|
15
13162951900 2015-09-06 19:27:53 +08:00
额。。 我这边用的 django 做的后端 API
前台 REACT 还算顺手 |
16
junnplus OP @13162951900 求项目地址
|
17
dongweiming 2015-09-06 22:36:01 +08:00 1
@junnplus https://github.com/dongweiming/r 我这个是 flask+mako+ES6+的 一个 https://github.com/qingfeng/p 的 react 版. 你可以看看 - 我这里在模板里面直接加了一些 meta 用来被 react 解析
但是话说, 你都用 react 了. 使用 api 只能通过 ajax. 这样好么? 1. 每次先是渲染一个没有内容的页面 然后调用 ajax 从后端获得. 不会初始化的渲染? 2. react 适合复杂的单页前端场景. |
18
phx13ye 2015-09-07 11:02:17 +08:00
弱弱的问下: ajax 你们怎么做页面跳转还有重定向什么的啊
|
20
junnplus OP @dongweiming thx ,刚接触 react ,我看了一些项目,感觉 react 就是比较适用于单页面场景,而且多页面写起来怪怪的,其实我的目的只是为了参考一些项目学学 restful 和前后端分离的实际应用。
|
21
elvis_w 2015-09-09 11:20:30 +08:00
试试 Flask-RESTful
https://flask-restful.readthedocs.org/en/0.3.4/ |