私は見つけたthis handy answerにどのように辞書を使用して新しいテーブルエントリを作成します。Peewee - 辞書でエントリを更新する
更新と同じ方法でエントリします。しかし、私は更新したい特定のテーブルエントリをどのように扱うべきか分かりません。あなたは、私が明示的にすべてのフィールドを住所見ることができるように
entries = Fruit.select().order_by(Fruit.name.desc())
#... all entries are listed with the index number
entry_index = int(input("Please enter entry number: "))
#...
entry_index -= 1
name = "Banana"
color = "yellow"
if input('Update entry? [Yn] ').lower() != 'n':
entries[entry_index].name = name
entries[entry_index].color = color
:
私の現在のバージョンは次のようになります。 変数(名前、色)を辞書に入れ、前述のダブルスターショートカットlike in this answerで「entry_index」という位置のエントリを更新したいと思います。 しかし、proper method in the docsが見つかりません。
誰でもその方法を知っていますか?
ありがとうございました!
マフ