1

ここで私の最初のアプリケーションを開発し、クラスベースのビューを使用して(django.views.generic.base.View、Web ページからのリクエストを処理します。

Webページには、POSTリクエストを送信するさまざまなフォームがあります。たとえば、テキスト投稿フォーム、コメントフォーム、投票ボタンなどがあります。POST.has_key()どのフォームが投稿されたかを確認し、それに応じて処理しています。

それを行うより良い方法は何ですか?また、post_text、post_comment などのメソッド名を定義し、それに応じてメソッドを実行するように dispatch() を構成することは可能ですか?

4

1 に答える 1

1

私は次のようにします:

class AwesomeView(View):
    def post(self, request, *args, **kwargs):
        # This code is basically the same as in dispatch
        # only not overriding dispatch ensures the request method check stays in place.

        # Implement something here that works out the name of the 
        # method to call, without the post_ prefix
        # or returns a default method name when key is not found.
        # For example: key = self.request.POST.get('form_name', 'invalid_request')
        # In this example, I expect that value to be in the 'key' variable

        handler = getattr(
                           self,  # Lookup the function in this class
                           "post_{0}".format(key),  # Method name
                           self.post_operation_not_supported  # Error response method
                         )
        return handler(request, *args, **kwargs)

    def post_comment(self, request, *args, **kwargs):
        return HttpResponse("OK")  # Just an example response
于 2013-09-20T22:53:22.847 に答える