$.ajax({
type :'GET',
url : geturl(a),
// type: $(this).attr('method'),
dataType : 'json',
ビュー.py:
if request.method=="POST":
if request.POST.get('monyrsubmit'):
monthform=MonthForm(request.POST)
if monthform.is_valid():
selected_month=monthform.cleaned_data["Month"]
selected_year=monthform.cleaned_data["Year"]
print selected_month
print selected_year
ajax の type フィールドに GET と POST の両方のリクエストを指定できますか? フォームを使用していて、送信ボタンがクリックされた場合にのみ、送信されたデータに基づいて情報を表示しようとしています。request.POST.get('monyrsubmit') が機能しない場合。助けていただければ幸いです