アップデート
私はサーバーでいくつかのメンテナンスを行っていて、再起動しました...戻ってくると、コードは問題なく機能しました...実際には同じことを心配しています...
mod_wsgi のバグだと思います。
とにかくありがとう!
私は本当にdjangoが初めてです(昨日始めました)。私は xlrd を使用して Excel パーサーを作成することができました。すべてがデータで正常に動作します (ロードは非常に高速です)。データベース内のファイル情報を更新する必要があるため、ロードの進行状況を知ることができます。問題、save() メソッドが機能しません。既に update と get および filter を使用しましたが、常に同じ問題が発生します。
どこが間違っているのかご指摘いただければ幸いです
models.py
class archivo(models.Model):
archivo_id = models.AutoField(primary_key=True)
fk_cliente = models.IntegerField()
fk_usuario = models.IntegerField()
archivo_nombre = models.CharField(max_length = 30)
archivo_original = models.CharField(max_length = 255)
archivo_extension = models.CharField(max_length = 5)
archivo_tamano = models.FloatField()
archivo_registros = models.IntegerField()
archivo_registros_buenos = models.IntegerField()
archivo_registros_malos = models.IntegerField()
archivo_registros_cargados = models.IntegerField()
archivo_fecha_carga = models.DateTimeField()
archivo_fecha_envio = models.DateTimeField()
def __unicode__(self):
return self.archivo_id
ビュー.py
from procesa.models import *
from django.conf import settings
from django.shortcuts import render_to_response
import xlrd
from time import strftime
from symbol import except_clause
def procesa(request, procesar = 0):
datos = None
infoarchivo = None
if(procesar > 0):
try:
infoarchivo = archivo.objects.get(archivo_id=int(procesar))
except:
return render_to_response('error.html')
if (infoarchivo is not None):
excel_path = settings.FILES_URL+infoarchivo.archivo_original
wb = xlrd.open_workbook(str(excel_path))
sh = wb.sheet_by_index(0)
##START UPDATE##
infoarchivo2 = archivo.objects.filter(archivo_id = procesar)
infoarchivo2.archivo_registros = sh.nrows
infoarchivo2.save()
##END UPDATE##
for rownum in range(sh.nrows):
destino = str(sh.cell(rownum,0).value)
destino = destino.replace(".0","")
if (int(destino) > 0):
mensaje = str(sh.cell(rownum,1).value)
ahora = strftime("%Y-%m-%d %H:%M:%S")
reg = registro.objects.filter(registro_destino__exact=destino,fk_archivo__exact=procesar)
#reg = registro.objects.raw(str(el_query))
if (reg.exists()):
exists = True
else:
r = registro(fk_cliente=1,fk_usuario=1,fk_archivo=int(procesar),registro_destino=destino,registro_mensaje=mensaje,registro_estado='Cargado',registro_fecha_carga=ahora)
r.save()
datos = {'ID':procesar,'PATH': settings.FILES_URL, 'INFO':infoarchivo, 'el_excel':infoarchivo.archivo_original, 'registros':sh.nrows }
return render_to_response('carga.html', {'datos': datos})
すでに試した ##START UPDATE## ブロックで
infoarchivo.archivo_registros = sh.nrows
infoarchivo.save()
と
archivo.objects.filter(archivo_id = procesar).update(archivo_registros=sh.nrows)
と
archivo.objects.get(archivo_id = procesar).update(archivo_registros=sh.nrows)
このエラーまたはモデル ファイルに追加する他の何かへの参照が見つかりません。修正するのは本当に簡単だと確信していますが、見つけることができません。
私が得ているエラー(すべての異なるコードに対して)は
例外の種類: /procesa/4 の AttributeError
例外値: 'archivo' オブジェクトには属性 'update' がありません
ファイルのレコードは解析され、問題なく挿入されます。
AmazonのEC2にmod_wsgiとmysqlバックエンドがインストールされたApache 2.2でpython 2.7でDjango 1.5を使用しています
更新 サーバーでいくつかのメンテナンスを行って再起動しました...戻ってくると、コードは問題なく動作しました...実際には同じことを心配しています...
mod_wsgi のバグだと思います。
とにかくありがとう!