word
フィールドとを持つモデルがありますdefinition
。辞書のモデル。
データベースには、たとえば次のオブジェクトがあります。
word definition
-------------------------
Banana Fruit
Apple also Fruit
Coffee drink
単語の最初の文字で並べ替えて、次のようなクエリを作成したいと思います。
Apple - also Fruit
Banana - Fruit
Coffee -drink
これは私のモデルです:
class Wiki(models.Model):
word = models.TextField()
definition = models.TextField()
テンプレートではなく、ビューで作成したい。これはジャンゴでどのように可能ですか?