1

SQLと一緒にdjangoでチョコレートショップを作っています。

現在、SQL データベースに接続して、chocolate-menu.html ファイルにあるすべての既存のチョコレートを表示できます。価格や味などでチョコレートをフィルタリングできるように、フィルター メニューを統合したいと考えています。

views.py で次の関数を使用して、すべてのチョコレートを表示します。

def showChocoMenu(request):
    connection = pyodbc.connect('Driver={SQL Server Native Client 11.0};Server=tcp:xxxx.database.windows.net,1433;Database=xxx;Uid=xxxx@xx;Pwd=xxx;Encrypt=yes;Connection Timeout=30;')
    cur = connection.cursor() 
    cur.execute("SELECT choco_name, choco_price FROM chocolates c, stock s WHERE c.choco_ID=s.choco_ID AND s.availability > 0 AND s.country ='UK'")
    chocolateMenu = cur.fetchall()
    cur.close()
    connection.close() 
    return HttpResponse(render_to_string('chocolate_menu.html',{'chocolateMenu':chocolateMenu}))

これは、chocolate-menu.html ファイルで作成したフィルター メニューです。

<table width = "50%" class = "center_filter" style ="border-collapse:collapse;">
                <tr>
                    <td width = "10%" class = "no_border"> <span style = "color:9A8478;font-family: Helvetica Neue, Arial;font-weight: bolder; font-size:20px">Filter by</span> </td>
                    <td width = "10%"> <span style = "color:C39A6B;  font-weight: bold; font-size:18px">Price </span></td>
                    <td width = "10%"> <span style = "color:C39A6B;  font-weight: bold; font-size:18px">Flavour </span></td>
                    <td width = "10%"> <span style = "color:C39A6B;  font-weight: bold; font-size:18px">Special Diet </span></td>
                    <td width = "10%"> <span style = "color:C39A6B; font-weight: bold; font-size:18px">Calories </span></td>
                </tr>

                <tr>
                    <td class = "no_border"></td>
                    <td>  <input type="checkbox" style="margin-right: 10px;" id="five_to_ten" value='five_to_ten' >&pound;5 - &pound;10</td>
                    <td> <input type="checkbox" style="margin-right: 10px;" id="dark" value = 'dark'>Dark </td>
                    <td> <input type="checkbox" style="margin-right: 10px;" id="lactose_free" value='lactose_free'>Lactose-free </td>
                    <td> <input type="checkbox" style="margin-right: 10px;" id="zero_to_hundret" value = 'zero_to_hundret'>  0 - 100 </td>
                </tr>
                    <td class = "no_border"></td>
                    <td> <input type="checkbox" style="margin-right: 10px" id="ten_to_twenty" value ='ten_to_twenty' >&pound;10 - &pound;20</td>
                    <td> <input type="checkbox" style="margin-right: 10px" id="white" value = 'white'>White </td>
                    <td> <input type="checkbox" style="margin-right: 10px" id="sugar_free" value = 'sugar_free'>Sugar-free </td>
                    <td> <input type="checkbox" style="margin-right: 10px" id="hundret_to_twofifty" value='hundret_to_twofifty'>100 - 250 </td>
                </tr>    

            </table>

メソッド POST を使用してフォームをインクルードしてフィルター関数を呼び出すことができると思いますが、Python でこれを行う方法がわかりません。

よろしくお願いします!

4

1 に答える 1

3

Django には、プレーンな SQL を書かなくても済むようにするために使用できるORMがあります。これにより、モデルとのやり取りがはるかに簡単になります。したがって、次のようなモデルの場合:

class Chocolate(model.Model):
     availability = models.IntegerField(...)
     country = models.CharField(...)
     ...

QuerySetオブジェクト (クエリから返される django モデル インスタンスのグループ)を返すクエリを作成できます。

chocolates = Chocolate.objects.all() # This will get all chocolates
chocolates = Chocolate.objects.filter(availability__gt = 0)
chocolates = Chocolate.objects.filter(country='UK')
chocolates = Chocolate.objects.filter(availability__gt = 0, country='UK')

上記のドキュメントを読んで、一般的なクエリの作成に慣れてから、 orm で実現できるさまざまなクエリを確認し、 Django チュートリアルも読んでください。

于 2013-10-10T11:04:36.900 に答える