当我尝试这样的网址时
$ .get(“ getdetailofselectedcustmor /”,function(){
})
在我的js代码中,我被重定向到“当前url + getdetailofselectedcustmor”,但是我要寻找的只是重定向到“ localhost:8000 / getdetailofselectedcustmor /”,我该怎么做?
最佳答案
这不是Django问题,而是JS请求问题
确保始终将/
放在要请求的任何资源路径之前。
像这样
$.get("/getdetailofselectedcustmor/", function(...){...})