template.html
<script >
$(document).ready(function() {
var a="{{parameter}}";
$.ajax({
type :'GET',
url : geturl(a),
dataType : 'json',
views.py
if param=="daywise":
print request.method
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
我实际上是通过发送表单数据来执行 post 方法的。但它有一个获取请求,因为我已经在 ajax 脚本中给出了 GET 类型。我正在查看视图。如果 request.method=="POST" 但此方法仍然是 GET