我的$ .get()请求似乎没有影响我的Django项目。
当您手动将URL更改为?row = 0& day = 4时,它可以正常工作,但在调用Javascript函数索引(x)时它不起作用。
我已经检查并且在打印context ['entry_form']时逻辑正常工作,生成了正确的html。
我不确定我是否正确使用Javascript $ get()调用?
使用Javascript:
function index(x) {
theCellIndex = parseInt(x.cellIndex) - 2;
theRowIndex = parseInt(x.parentNode.rowIndex) - 1;
$.get( "{{ request.path }}", { 'row': theRowIndex, 'day': theCellIndex} );
}
Django的:
if "day" and "row" in request.GET:
day = request.GET.get("day")
rownum = request.GET.get("row")
allrows = RowControl.objects.filter(month_control_record=month_control_record)
row = allrows[int(rownum)]
selected_date = datetime.date(int(year), int(month), int(day))
try:
form_instance = Entry.objects.get(row_control=row, date=selected_date)
entry_form = EntryForm(instance=form_instance)
except Entry.DoesNotExist:
entry_form = EntryForm(initial={'row_control': row, 'date': selected_date})
context = {
'entry_form': entry_form,
}
print(context['entry_form'])
return render(request, "timesheet/monthview.html", context)
编辑: 目标是让此模板代码正确更新:
<form method="POST" action="{{ request.path }}">
{% csrf_token %}
{{ entry_form|crispy }}
<button class="btn btn-primary" type="submit" value="Submit" name="entry_submit" ><i class="fa fa-lg fa-floppy-o"></i> Save</button>
</form>
答案 0 :(得分:2)
$.get( "{{ request.path }}", { 'row': theRowIndex, 'day': theCellIndex} );
您只是发出GET
请求,但没有对响应做任何事情。理想情况下,您可能希望将返回的HTML响应加载到某些div
或其他内容。
代码应该有第3个参数,返回响应时执行回调函数。
$.get( "{{ request.path }}", { 'row': theRowIndex, 'day': theCellIndex}, function(response) {
console.log(response);
} );