到目前为止我的代码:
from django.core.files import File
file = open('ChicagoTimesScores.py')
djangofile = File(file)
myfile = File(file)
myfile.save('new', djangofile)
file.close()
我知道重复我的文件,但我有点迷失,并尝试了我能看到它是否有效。
我的错误代码:
Traceback (most recent call last):
File "C:/Python33/TestRun.py", line 6, in <module>
myfile.save('new', djangofile)
AttributeError: 'File' object has no attribute 'save'
我正在尝试用django保存这个python文件,但似乎python无法识别这些属性。
哦,是的,我正确安装了django。没问题。
答案 0 :(得分:0)
Django File类没有方法“save”以下是File类的Django Docs: