djangoのurlルーティングで使用するpath()関数について分からないことがあります。
pathの第2引数に関数viewもしくはクラスviewを渡すということで、そのままviews.TestListView.as_view()とすれば問題ないのですが、この部分をあえて別関数にして、returnでviews.TestListView.as_view()この部分を返すようにすると下記のエラーとなります。
エラーのfunction属性にgetがないというのは、as_view()関数を読んだときに内部処理で、getかpostかをdispatch関数で自動で判断してくれるのいうのは知っていて、そのgetが定義されていないのかなど睨んでいますが、そもそもpath()の外に出すだけで、エラーになるということが分かりません。
お助け願います。
Internal Server Error: /alcohol/ Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/handlers/exception.py", line 47, in inner response = get_response(request) File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/deprecation.py", line 116, in __call__ response = self.process_response(request, response) File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/middleware/clickjacking.py", line 26, in process_response if response.get('X-Frame-Options') is not None: AttributeError: 'function' object has no attribute 'get'
以下ソースです。
Python
1#url.py 2 3from django.urls import path 4from django.contrib.auth.decorators import login_required 5from . import views 6 7app_name='test' 8 9def aaa(request): 10 return views.TestListView.as_view() 11 12urlpatterns = [ 13 path('', aaa, name='test'), 14]
Python
1#views.py 2#import関係ははしょってます。 3 4class TestListView(ListView): 5 model = Test 6 context_object_name = 'tests' 7 def get_context_data(self, **kwargs): 8 context = super().get_context_data(**kwargs) 9 return context
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/05 08:12
2021/04/05 22:42