django:urllib2返回“不完整格式”检索JSON

时间:2012-07-04 13:03:02

标签: django json

我有一段代码可以通过控制台运行,但在我的django应用程序上运行时失败:

# myapp/utils.py
def get_currencies_json():
try:
    req = urllib2.Request("http://openexchangerates.org/latest.json")
    opener = urllib2.build_opener()
    f = opener.open(req)
    return simplejson.load(f)
except Exception, ex:
    logging.error("get_currencies_json(): %s" % ex)
    return False

当它到达f = opener.open(req)并返回它时失败:

get_currencies_json(): incomplete format

我在这样的视图中加载此函数:

context = {
    ...
    'currencies_json': get_currencies_json(),
}

有什么想法吗?

0 个答案:

没有答案