django не может сохранить все инциденты в базе данных - PullRequest
0 голосов
/ 04 марта 2019

У меня есть рабочий код, который получает все подробности происшествия.Но я не могу сохранить полные данные в базе данных, только последняя запись сохраняется

def incidents(request):
incidentsServicenow = IncidentsServicenow()
c = pysnow.Client(instance='', user='', password='')

# Define a resource, here we'll use the incident table API
incident = c.resource(api_path='/table/incident')
print('incident', incident)
# Query for incidents with state 1
response = incident.get()
print('response', response)
# Iterate over the result and print out `sys_id` of the matching records.
ticket = []
for record in response.all():
    data = {
        'number': record['number'],
        'description': record['description'],
        'short_description': record['short_description'],
        'state': record['state'],
    }
    #print(record['number'])
    incidentsServicenow.number = data['number']
    incidentsServicenow.title = data['short_description']
    incidentsServicenow.description = data['description']
    incidentsServicenow.state = data['state']
    #ticket.append(data)
    print("storing data")
    incidentsServicenow.save()
return HttpResponse(ticket, content_type='application/json')

Моя модель

class IncidentsServicenow(models.Model):
number = models.CharField(max_length=32)
title = models.CharField(max_length=160)
description = models.TextField()
state = models.CharField(max_length=20)

class Meta:
    managed = False
    db_table = 'incidents_servicenow'

Мне нужно сохранить все записи в базе данных

Ответы [ 2 ]

0 голосов
/ 04 марта 2019

Добавьте строку ниже для цикла

incidentsServicenow = IncidentsServicenow()
0 голосов
/ 04 марта 2019

Вы должны создавать объекты в цикле.Из кода видно, что вы создали объект incidentsServicenow, созданный вне цикла.

  for record in response.all():
    data = {
        'number': record['number'],
        'description': record['description'],
        'short_description': record['short_description'],
        'state': record['state'],
    }
    #print(record['number'])
    incidentsServicenow = IncidentsServicenow()
    incidentsServicenow.number = data['number']
    incidentsServicenow.title = data['short_description']
    incidentsServicenow.description = data['description']
    incidentsServicenow.state = data['state']
    ticket.append(data)
    print("storing data")
    incidentsServicenow.save()
return HttpResponse(ticket, content_type='application/json')

или вы могли бы сделать это

   for record in response.all():
    data = {
        'number': record['number'],
        'description': record['description'],
        'short_description': record['short_description'],
        'state': record['state'],
    }
    #print(record['number'])
    incidentsServicenow = IncidentsServicenow(number=data['number'],
title=data['short_description'],description=data['description'],state=data['state'])
    ticket.append(data)
    print("storing data")
    incidentsServicenow.save()
return HttpResponse(ticket, content_type='application/json')
...