我將嘗試描述問題: 在HTML中,我有一些AJAX調用,可以說,URL getMetaData
(這是views.py
中的函數)。我的功能,我檢查POST字典檢查是所有值。如果不是,我想重定向到主頁面(「main.html」)。 main.html在同一個views.py
文件中的函數main(request)中呈現。 當我這樣做:Django不會將我重定向到另一個視圖
def main(request):
return render(request,'main.html')
def getMetaData(request):
if dictionary not valid:
return main(request)
這不工作...主函數被調用,但頁面保持不變。