我现在要接收到request.args,
并将里面的所有的值变成utf-8,里面目前的值是unicode的
但request.args的类型是 ImmutableMultiDict,不可改变值的
大家讲道理2017-04-17 15:07:44
Found the answer at http://werkzeug.pocoo.org/docs/0.10/datastructures/
ImmutableMultiDict and MultiDict can be converted into dict type through to_dict()