我想将字符串转换为 django 模板中的列表:
数据 :
{u'productTitle': u'Gatsby Hard Hair Gel 150g', u'productPrice': 0.0, u'productMRP': 75.0, u'hasVariants': 0, u'productSite': u'http://www.365gorgeous.in/', u'productCategory': u'', u'currency': u'INR', u'productURL': u'http://www.365gorgeous.in/gatsby-hard-hair-gel-300g-1.html', u'productDesc': u'A Water type hair gel with is hard setting and gives hair a firm hold It is non sticky hard setting and smooth to the touch Firm hold with wet look spikes', u'productSubCategory': u'', u'availability': 0, u'image_paths': u'["full/548bc0f93037bd03340e11e8b18de33b414efbca.jpg"]'}
我想从上面的字典中提取图像路径,但图像路径在字符串u'["full/548bc0f93037bd03340e11e8b18de33b414efbca.jpg"]'
中是否有任何方法可以将其转换为["full/548bc0f93037bd03340e11e8b18de33b414efbca.jpg"]
内部模板...我知道它可以在视图内完成但我可以在模板中执行此操作... .