删除渲染模板中的 unicode 字符串

发布于 2024-10-05 22:03:44 字数 640 浏览 4 评论 0原文

我试图在这个地址下返回一个类似 json 的对象:

http://ntt.vipserv.org/data /shows

但结果我得到:

{'1': {'url': u'http://www.rte.ie/tv/crimecall/', 'image': u'http ://img.rasset.ie/0002c8d0-250.jpg', 'id': u'2', 'name': u'Crimecall'}}

如何摆脱 unicode 字符串?

我的代码:

objects = Show.objects.all()
i = 0
dict = {}
small_dict = {}
for o in objects:
    small_dict = {'id': o.id.decode('ascii'), 'url': o.url.decode('ascii'), 'name': o.name.decode('ascii'), 'image': o.image.decode('ascii')}
    dict[str(i+1)] = small_dict
    small_dict = {}

I'm trying to return a json like object under this address:

http://ntt.vipserv.org/data/shows

but as a result I'm getting :

{'1': {'url': u'http://www.rte.ie/tv/crimecall/', 'image': u'http://img.rasset.ie/0002c8d0-250.jpg', 'id': u'2', 'name': u'Crimecall'}}

How to get rid fo the unicode strings ?

My code:

objects = Show.objects.all()
i = 0
dict = {}
small_dict = {}
for o in objects:
    small_dict = {'id': o.id.decode('ascii'), 'url': o.url.decode('ascii'), 'name': o.name.decode('ascii'), 'image': o.image.decode('ascii')}
    dict[str(i+1)] = small_dict
    small_dict = {}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖阳 2024-10-12 22:03:44

我建议使用 json 模块,而不是尝试自己编写 JSON 编码器。这将正确格式化双引号中的字符串,并且字符串前面没有 u

I'd suggest using the json module instead of trying to write a JSON encoder yourself. This will correctly format the strings in double quotes and without the u in front of the string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文