Django字符串索引必须是整数,而不是str

时间:2016-05-19 08:23:27

标签: python django

使用表单i创建xml请求并接收xml响应,如下所示:

<Root>
   <Header>
      <information>info</information>
   </Header>
   <Main>
      <Product>
         <Name>name1</Name>
         <Description>description1</Description>
         <Price>1</Price>
         <Pictures>
            <Picture>url_1</Picture>
            <Picture>url_2</Picture>
         </Pictures>
      </Product>
   </Main>
</Root>

然后使用此函数将xml数据转换为字典:

from xml.etree import cElementTree as ET
from collections import defaultdict

def etree_to_dict(t):
    d = {t.tag: {} if t.attrib else None}
    children = list(t)
    if children:
        dd = defaultdict(list)
        for dc in map(etree_to_dict, children):
            for k, v in dc.iteritems():
                dd[k].append(v)
        d = {t.tag: {k:v[0] if len(v) == 1 else v for k, v in dd.iteritems()}}
    if t.attrib:
        d[t.tag].update(('@' + k, v) for k, v in t.attrib.iteritems())
    if t.text:
        text = t.text.strip()
        if children or t.attrib:
            if text:
              d[t.tag]['#text'] = text
        else:
            d[t.tag] = text
    return d

e = ET.XML('''
<Root>
   <Header>
      <information>info</information>
   </Header>
   <Main>
      <Product>
         <Name>name1</Name>
         <Description>description1</Description>
         <Price>1</Price>
         <Pictures>
            <Picture>url_1</Picture>
            <Picture>url_2</Picture>
         </Pictures>
      </Product>
   </Main>
</Root>
''')

并将其存储到数据库:

from pprint import pprint
d = etree_to_dict(e)

pprint(d)
d = etree_to_dict(e)

product = d['Root']['Main']['Product']
r = Product.objects.create()
r.name = product['Name']
r.description = product['Description']
r.price = product['Price']
r.save()

一切都很好。但是当我尝试将图片保存到数据库时:

product_pictures=d['Root']['Main']['Pictures']
  for m in product_pictures:
    p = ProductPictures(
      picture = m['Picture']
    )
    p.product = r
    p.save()
    r.productpictures_set.all()

我在字符串TypeError上获得了string indices must be integers, not str picture = m['Picture']。 为什么会这样?我做错了什么。谢谢你的回答。

这是我的模特:

class Product(models.Model):
  name = models.CharField(max_length=200, blank=True, null=True)
  description = models.TextField(max_length=2000, blank=True, null=True)
  price = models.CharField(max_length=10, blank=True, null=True)

class ProductPictures(models.Model):
  product = models.ForeignKey(Product, null=True)
  picture = models.CharField(max_length=200, blank=True, null=True)

UPD: 这是来自Local vars的数据:

product_pictures

{'Picture': [{'#text': 'http://images.static.goglobal.travel/images/hotels/67862/2010113161131438.jpg',
              '@Description': ''},
             {'#text': 'http://images.static.goglobal.travel/images/hotels/67862/2010113161132187.jpg',
              '@Description': ''},
             {'#text': 'http://images.static.goglobal.travel/images/hotels/67862/2010113161132406.jpg',
              '@Description': ''}]}

m

'Picture'
d

{'Root': {'Header': {'Information': '1521337'},
          'Main': {'Name': 'name1',
                   'Price': '1',
                   'Description': 'description',
                   'Pictures': {'Picture': [{'#text': 'http://images.static.goglobal.travel/images/hotels/67862/2010113161131438.jpg',
                                             '@Description': ''},
                                            {'#text': 'http://images.static.goglobal.travel/images/hotels/67862/2010113161132187.jpg',
                                             '@Description': ''},
                                            {'#text': 'http://images.static.goglobal.travel/images/hotels/67862/2010113161132406.jpg',
                                             '@Description': ''}]},
                   'RoomFacilities': None}}}

1 个答案:

答案 0 :(得分:1)

产品图片是一个对象/字典,只有一个图片的键,所以迭代它是没有意义的。你可以迭代Picture

for m in product_pictures.get('Picture'):
    p = ProductPictures(
      picture = m.get('#text')
    )

虽然我怀疑在树形图的创建中存在一个值得进一步调试的问题。