我正在尝试访问model.filefield
Django中的,以使用该模块解析Python中的CSV文件csv
。它可以在Windows上运行,但在Mac上可以达到以下目的:
Exception Type: Error
Exception Value: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?
这是代码:
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
东西 它是模型上的文件名吗?