想用Flask 开小网站,不知道大家遇过什么坑没有?
1
O21 2015-01-20 12:42:53 +08:00 via iPhone
有坑也是自己挖的
|
2
iloahz 2015-01-20 12:45:50 +08:00 via iPhone
blueprint不如django的好用,个人觉得
|
3
yrdr 2015-01-20 12:46:37 +08:00
Flask上手还是蛮简单的,可能是刚入python,暂时不清楚坑在哪里
|
4
washinriver 2015-01-20 13:06:39 +08:00
项目一直在用,坑还好
|
5
kavi 2015-01-20 13:15:37 +08:00
最近也是刚上手,关注一下。
|
6
tonyleen 2015-01-20 13:19:50 +08:00
之前用过,很简单的项目,到没遇到什么坑.
|
7
snopy 2015-01-20 13:31:27 +08:00
目前在用Flask+sqlalchemy做开发...
|
8
skywalker 2015-01-20 13:38:55 +08:00
挺好的,记得哪个Django的核心开发人员说过,Django出现的太早了,Flask才是Django应该的样子。
|
10
sujin190 2015-01-20 14:05:49 +08:00
日志,有点乱
|
11
icedx 2015-01-20 14:08:04 +08:00 via Android
依赖数据库太强 不能在Loop 内使用Loop 外的逻辑?
|
12
happywowwow 2015-01-20 14:10:41 +08:00
http://stackoverflow.com/questions/28017782/flask-app-turn-off-without-any-information
昨天遇到的一个问题 不清楚是为什么了 后来 uninstall install 了flask-sqlalchemy 最后发现好像是view里使用sqlalchemy不正确,有外键只add了而没commit,但好像不是这个原因 问题修改了几次 |
13
yakczh 2015-01-20 14:12:11 +08:00
用sqlalchemy查出来的数据,不能直接输出json
|
14
crazyxin1988 2015-01-20 14:14:20 +08:00 1
@yakczh
可以在model里加个to_json方法转一下~ |
15
cloverstd 2015-01-20 14:14:41 +08:00
难道就我一个人用 peewee 么
|
16
yakczh 2015-01-20 14:15:53 +08:00
@crazyxin1988 不同请求查询需要的字段都不一样
|
17
crazyxin1988 2015-01-20 14:17:09 +08:00
|
18
yakczh 2015-01-20 14:20:25 +08:00
要加字段
|
19
cicku 2015-01-20 15:01:01 +08:00
flask 自己写过博客和网站,小应用挺好玩的,而且扩展性强所以我觉得没什么大坑。
|
20
vob636 2015-01-20 15:47:41 +08:00
我觉得不应该只有我一个人用Marshmallow搭配SQLAlchemy输出结果的吧?
|
21
skywalker 2015-01-20 15:55:50 +08:00 1
@idblife 本来是自己随便看过的,不过去搜了下还是找到了,当然你要我严格的引用我是没这本事,
仅供参考: https://news.ycombinator.com/item?id=7105799 This last past year, at DjangoCon US • Chicago, I had the pleasure of sitting at the same table as Jacob Kaplan-Moss for the Speakers dinner prior to the conference. Very cool experience. My first. I brought up Flask and asked him what he thought of it. I had recently used it for a project for the first time and likely only did so because I was SUPPOSE TO BE FOCUSING on Django and preparing a talk about it. So naturally, I procrasinated and did everything but. It's been on my radar for awhile. I was attracted to it by it's documentation. Turns out, I really enjoyed it. It felt familiar because I've used Django for so long. I brought this up at the dinner table. Jacob said something that took me by surprise. I can't quote him exactly--the wine and drinks were too good that evening, but it was something to the effect of "Flask is what Django should have been". Another fellow from our table chimed in and added "If only Django had existed before we created Django!" What he ment was, without Django, Flask wouldn't of had such a clear and smooth start. Django taught us a lot. What I took from this was, both have their place and we have a lot to be thankful for, especially coming from the Django community. In regards to longevity, I think community is a major factor but these two technolgoies are both under Python, and I think the Python community at-large is what matters here. Hearing what Jacob had to say on Flask was sobering. There is no end-all-be-all, and both of these technolgoies have more in common than not. |
22
billlee 2015-01-20 15:59:03 +08:00
blueprint 注册到 '/' 的时候,静态资源注册不到 "/static" 上
|
23
bittenbydog 2015-01-20 16:00:12 +08:00
确实木有什么坑啊,用的很爽
|
24
ityao 2015-01-20 16:02:41 +08:00
从flask转去sails的无比爽
|
25
lmeetr 2016-07-29 23:45:00 +08:00
坑太多了。最大的坑就是没有事务管理,非常的麻烦。
|