在运行Python 2.7的Google App引擎上使用simplejson
时遇到问题。
刚刚从Master / Slave数据存储上的Python 2.5切换到High Replication数据存储上的Python 2.7。过去常常这样做:
from django.utils import simplejson
现在为了使用json,我可以这样做:
import json
但是,我需要使用simplejson
。这适用于localhost调试器,但不适用于服务器:
import simplejson
如何在GAE上运行Python 2.7时使用此库?
谢谢!
答案 0 :(得分:2)
我认为json和simplejson现在兼容了。如果你有使用simplejson的代码,你可以尝试
import json as simplejson