【已解决】Flask中如何解析已得到的JSON字符串中的参数
crifan 8年前 (2016-10-31) 4703浏览 0评论
之前折腾过Flask-restful中,利用: reqparse.RequestParser() 和add_argument 然后去实现参数解析。 现在(通过websocket)得到一个json字符串,比如: { "long...
crifan 8年前 (2016-10-31) 4703浏览 0评论
之前折腾过Flask-restful中,利用: reqparse.RequestParser() 和add_argument 然后去实现参数解析。 现在(通过websocket)得到一个json字符串,比如: { "long...
crifan 8年前 (2016-10-31) 7145浏览 0评论
Python中,在json字符串和dict字典变量之间转换,用json 但是最近用了Flask的json,去把dict转换为字符串: from flask import json def jsonToStr(jsonDict, indent=...
crifan 8年前 (2016-08-30) 2840浏览 0评论
已有: Flask的views.py和models.py中实现了枚举的值 现在需要: 把当前的枚举值,传入Jinja的模版的html中 把原先的: <li> <div class="item-content&qu...
crifan 8年前 (2016-08-30) 4453浏览 0评论
虽然此处已经将创建枚举的代码写好了: [已解决]SQLAlchemy中添加枚举类型字段 但是实际上,此处从form表单拿到的是字符串 所以要去搞清楚:如何把字符串,转换为enum枚举的值 然后传入Table的column中。 python strin...
crifan 8年前 (2016-08-27) 2152浏览 0评论
python 字符串 开头 eventKey=JOIN_EVENT_1 判断字符串是否以 JOIN_EVENT_ 开头 Python startswith() 函数 判断字符串开头 – doiido的专栏 – 博客频道 ...
crifan 8年前 (2016-08-24) 3388浏览 0评论
折腾: [已解决]Flask中app.logger.debug出错:UnicodeEncodeError ascii codec can’t encode characters in position 59-68 ordinal not ...
crifan 8年前 (2016-08-22) 3218浏览 0评论
之前在: Quickstart — Flask-SQLAlchemy Documentation (2.1) 见到: def __repr__(self): return ‘<User %r>...
crifan 8年前 (2016-08-22) 3033浏览 0评论
目前遇到问题是: 即: var monthValue = values[1] var realMonthValue = monthValue + 1 ...
crifan 8年前 (2016-08-21) 4355浏览 0评论
Python中已有一个dict对象的json变量 其中部分key的值中包含中文 现在希望可以把dict打印出,格式化之后,带缩进的字符串 且中文也希望正常显示 之前已经通过: def jsonToStr(jsonDict, indent=2):...
crifan 9年前 (2016-05-24) 1696浏览 0评论
之前弄过attributed string: let attributedCenterText:NSMutableAttributedString = NSMutableAttributedString(string: centerT...