django项目——python Django接收ajax post请求报错 500(Internal Server Error)

错误信息如下:

点击 加入购物车 页面提示500服务器错误

django项目——python Django接收ajax post请求报错 500(Internal Server Error)_第1张图片

在终端显示错误为:

django项目——python Django接收ajax post请求报错 500(Internal Server Error)_第2张图片

查找 APPEND_SLASH的作用    https://www.liurongxing.com/django-append_slash-true.html

django项目——python Django接收ajax post请求报错 500(Internal Server Error)_第3张图片

可知应该是url配置的问题

查看urls.py  以及detail.html中的ajax部分的代码 

django项目——python Django接收ajax post请求报错 500(Internal Server Error)_第4张图片

django项目——python Django接收ajax post请求报错 500(Internal Server Error)_第5张图片

要将问题解决有两种方法

法1:   上图红框中的部分改为(推荐)

         

        

法2:上图红框中的部分改为

        

        

 

问题解决  ok!!!

再次点击添加购物车,成功

你可能感兴趣的:(python,web)