django unicode字符串列表到纯字符串

时间:2011-09-14 07:18:55

标签: python django

我正在使用Django和Python

unicode_countries = request.POST.getlist(u'countries')
Returns [u'ai', u'ag', u'aw', u'bs']

我的目标是将unicode_countries转换为MySQL IN字符串,它应该看起来像'ai','ag','aw','bs',我将在MySQL语句中使用“a where where in in('ai' ,'ag','aw','bs')“

请帮忙。

1 个答案:

答案 0 :(得分:1)

无需转换。

MyModel.objects.filter(countries__in=unicode_countries)