私はhttps://docs.djangoproject.com/en/1.4/intro/tutorial01/に取り組んでいます。
チュートリアルの最後には、django DB API に関するセクションがあり、次のセクションがあります。
# Display any choices from the related object set -- none so far.
>>> p.choice_set.all()
[]
# Create three choices.
>>> p.choice_set.create(choice_text='Not much', votes=0)
<Choice: Not much>
ただし、チュートリアルから直接コピーすると: >>> p.choice_set.create(choice_text='Not much', votes=0) 、取得:
raise TypeError("'%s' is an invalid keyword argument for this function" % kw
args.keys()[0])
TypeError: 'choice_text' is an invalid keyword argument for this function
以前は、tut のすべてが期待どおりに機能していました。
問題は何ですか?私は、OOPの経験を持つPHPのバックグラウンドから来たPythonにはかなり慣れていません。
前もって感謝します、
明細書