sql >> データベース >  >> RDS >> Mysql

djangoフォームのドロップダウン選択に追加データを取得する

    この質問/回答> (これは大まかなもので、テストされていません。できれば開始点です):

    class myClassForm(forms.Form):
        class Meta:
            model = myClass
            fields=["name"]
    
        reoccurrance = forms.ChoiceField(label="Reoccurance", choices=(),
                                       widget=forms.Select(attrs={'class':'selector'}))
    
    
    def __init__(self, *args, **kwargs):
        super(myClassForm, self).__init__(*args, **kwargs)
        choices = []
        for pt in Reoccurance.objects.all():
          choices.append((pt.id, unicode(pt.days)))
        self.fields['reoccurrance'].choices = choices
    



    1. Psycopg2を使用してPython辞書を挿入します

    2. LaravelとMAMPでMySQLへの接続が拒否されました

    3. SQL JOIN:それらを理解できないだけです

    4. 専用サーバーでのMySQLのチューニングの基本