Tôi đang cố gắng truy cập a model.filefield
trong Django để phân tích cú pháp tệp CSV bằng Python bằng csv
mô-đun. Nó hoạt động trên Windows, nhưng trên Mac, nó cho tôi điều này:
Exception Type: Error
Exception Value: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?
Đây là mã:
myfile = customerbulk.objects.all()[0].fileup
mydata = csv.reader(myfile)
for email,mobile,name,civilid in mydata:
print email,mobile,name,civilid
customerbulk.objects.all()[0].fileup
. Nó có phải là một tên tập tin trên một mô hình?