摘要: 如果要查询整个内嵌文档,查询语句如下: 只针对内嵌文档的特定键值进行查询如下: 阅读全文
posted @ 2019-01-18 13:53 lvmenghui001 阅读(3079) 评论(0) 推荐(0) 编辑
摘要: def unicode_convert(input): if isinstance(input, dict): return {unicode_convert(key): unicode_convert(value) for key, value in input.iteritems()} elif isinstance(input, list): ... 阅读全文
posted @ 2019-01-18 13:43 lvmenghui001 阅读(1063) 评论(0) 推荐(0) 编辑