$.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 的类型字段中有 GET 和 POST 请求吗?我使用表单并且仅当单击提交按钮时我试图根据提交的数据显示信息。如果 request.POST.get('monyrsubmit') 不起作用。帮助将不胜感激