Django function based view get_form_kwargs










0















I have the following problem.



Normally in Django Class based views the get_form_kwargs method is used to supply the kwargs to the forms __init__(). For example:



class ComponentForm(forms.ModelForm):
diameter = forms.ModelChoiceField(queryset=Diameter.objects.all(), label='Diameter') # required=True,

class Meta:
model = Component
fields = [
'component_type',
'diameter',
'length'
]

def __init__(self, *args, **kwargs):
circuit = kwargs.pop('circuit')
project = kwargs.pop('project')
super(ComponentForm, self).__init__(*args, **kwargs)
self.fields['diameter'].queryset = Diameter.objects.filter(project=project, material = circuit.material_type)


In the example code above, the "circuit" and "project" are supplied by the get_form_kwargs method in the corresponding view.



The question is now how to pass these kwargs to the ComponentForm __init__() using a function based view?










share|improve this question




























    0















    I have the following problem.



    Normally in Django Class based views the get_form_kwargs method is used to supply the kwargs to the forms __init__(). For example:



    class ComponentForm(forms.ModelForm):
    diameter = forms.ModelChoiceField(queryset=Diameter.objects.all(), label='Diameter') # required=True,

    class Meta:
    model = Component
    fields = [
    'component_type',
    'diameter',
    'length'
    ]

    def __init__(self, *args, **kwargs):
    circuit = kwargs.pop('circuit')
    project = kwargs.pop('project')
    super(ComponentForm, self).__init__(*args, **kwargs)
    self.fields['diameter'].queryset = Diameter.objects.filter(project=project, material = circuit.material_type)


    In the example code above, the "circuit" and "project" are supplied by the get_form_kwargs method in the corresponding view.



    The question is now how to pass these kwargs to the ComponentForm __init__() using a function based view?










    share|improve this question


























      0












      0








      0








      I have the following problem.



      Normally in Django Class based views the get_form_kwargs method is used to supply the kwargs to the forms __init__(). For example:



      class ComponentForm(forms.ModelForm):
      diameter = forms.ModelChoiceField(queryset=Diameter.objects.all(), label='Diameter') # required=True,

      class Meta:
      model = Component
      fields = [
      'component_type',
      'diameter',
      'length'
      ]

      def __init__(self, *args, **kwargs):
      circuit = kwargs.pop('circuit')
      project = kwargs.pop('project')
      super(ComponentForm, self).__init__(*args, **kwargs)
      self.fields['diameter'].queryset = Diameter.objects.filter(project=project, material = circuit.material_type)


      In the example code above, the "circuit" and "project" are supplied by the get_form_kwargs method in the corresponding view.



      The question is now how to pass these kwargs to the ComponentForm __init__() using a function based view?










      share|improve this question
















      I have the following problem.



      Normally in Django Class based views the get_form_kwargs method is used to supply the kwargs to the forms __init__(). For example:



      class ComponentForm(forms.ModelForm):
      diameter = forms.ModelChoiceField(queryset=Diameter.objects.all(), label='Diameter') # required=True,

      class Meta:
      model = Component
      fields = [
      'component_type',
      'diameter',
      'length'
      ]

      def __init__(self, *args, **kwargs):
      circuit = kwargs.pop('circuit')
      project = kwargs.pop('project')
      super(ComponentForm, self).__init__(*args, **kwargs)
      self.fields['diameter'].queryset = Diameter.objects.filter(project=project, material = circuit.material_type)


      In the example code above, the "circuit" and "project" are supplied by the get_form_kwargs method in the corresponding view.



      The question is now how to pass these kwargs to the ComponentForm __init__() using a function based view?







      django view






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 13 '18 at 10:14









      cezar

      5,58232454




      5,58232454










      asked Nov 13 '18 at 10:09









      arnearne

      457




      457






















          2 Answers
          2






          active

          oldest

          votes


















          0














          Well, you just pass them.



          form = ComponentForm(circuit=whatever, project=whatever)





          share|improve this answer






























            0














            Two ways.



            Specify the directly in the constructor call.



            form = ComponentForm(keyword_arg1=value1, keyword_args2=value2)


            Alternatively build up a dictionary and pass it in with **kwargs syntax - I find this useful when dynamically adding attributes, and also when using inheritance (like the call to super().init() in your example).



            kwargs = keyword_arg1: value1
            kwargs.update(keyword_arg2:value2) # usually with conditionals to specify what gets added
            form = ComponentForm(**kwargs)





            share|improve this answer






















              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53278559%2fdjango-function-based-view-get-form-kwargs%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              Well, you just pass them.



              form = ComponentForm(circuit=whatever, project=whatever)





              share|improve this answer



























                0














                Well, you just pass them.



                form = ComponentForm(circuit=whatever, project=whatever)





                share|improve this answer

























                  0












                  0








                  0







                  Well, you just pass them.



                  form = ComponentForm(circuit=whatever, project=whatever)





                  share|improve this answer













                  Well, you just pass them.



                  form = ComponentForm(circuit=whatever, project=whatever)






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 13 '18 at 10:11









                  Daniel RosemanDaniel Roseman

                  446k41577633




                  446k41577633























                      0














                      Two ways.



                      Specify the directly in the constructor call.



                      form = ComponentForm(keyword_arg1=value1, keyword_args2=value2)


                      Alternatively build up a dictionary and pass it in with **kwargs syntax - I find this useful when dynamically adding attributes, and also when using inheritance (like the call to super().init() in your example).



                      kwargs = keyword_arg1: value1
                      kwargs.update(keyword_arg2:value2) # usually with conditionals to specify what gets added
                      form = ComponentForm(**kwargs)





                      share|improve this answer



























                        0














                        Two ways.



                        Specify the directly in the constructor call.



                        form = ComponentForm(keyword_arg1=value1, keyword_args2=value2)


                        Alternatively build up a dictionary and pass it in with **kwargs syntax - I find this useful when dynamically adding attributes, and also when using inheritance (like the call to super().init() in your example).



                        kwargs = keyword_arg1: value1
                        kwargs.update(keyword_arg2:value2) # usually with conditionals to specify what gets added
                        form = ComponentForm(**kwargs)





                        share|improve this answer

























                          0












                          0








                          0







                          Two ways.



                          Specify the directly in the constructor call.



                          form = ComponentForm(keyword_arg1=value1, keyword_args2=value2)


                          Alternatively build up a dictionary and pass it in with **kwargs syntax - I find this useful when dynamically adding attributes, and also when using inheritance (like the call to super().init() in your example).



                          kwargs = keyword_arg1: value1
                          kwargs.update(keyword_arg2:value2) # usually with conditionals to specify what gets added
                          form = ComponentForm(**kwargs)





                          share|improve this answer













                          Two ways.



                          Specify the directly in the constructor call.



                          form = ComponentForm(keyword_arg1=value1, keyword_args2=value2)


                          Alternatively build up a dictionary and pass it in with **kwargs syntax - I find this useful when dynamically adding attributes, and also when using inheritance (like the call to super().init() in your example).



                          kwargs = keyword_arg1: value1
                          kwargs.update(keyword_arg2:value2) # usually with conditionals to specify what gets added
                          form = ComponentForm(**kwargs)






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 13 '18 at 11:30









                          wobbily_colwobbily_col

                          5,11553360




                          5,11553360



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53278559%2fdjango-function-based-view-get-form-kwargs%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              這個網誌中的熱門文章

                              Barbados

                              How to read a connectionString WITH PROVIDER in .NET Core?

                              Node.js Script on GitHub Pages or Amazon S3