viewsets post的时候报错

来源:4-7 Django的URLs与DRF的Routers

小白白123

2024-03-05 14:20

RuntimeError: You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redi

rect to the slash URL while maintaining POST data. Change your form to point to 127.0.0.1:8000/blog/viewsets/ (note the trailin

g slash), or set APPEND_SLASH=False in your Django settings.


写回答 关注

1回答

  • weixin_慕工程2219845
    2024-04-02 00:16:34

    APPEND_SLASH=False  在你设置文件里面添加下。

    一般就是你的请求url带不带最后的/

Django REST framework前后端分离框架实践

教你快速构建一个课程管理系统

6879 学习 · 34 问题

查看课程

相似问题