关于 DjangoUeditor 上传图片图片失败,csrf token missing or incorrect 的解决办法

Posted Justbreaking

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 DjangoUeditor 上传图片图片失败,csrf token missing or incorrect 的解决办法相关的知识,希望对你有一定的参考价值。

Forbidden (CSRF token missing or incorrect.): /ueditor/controller/
[27/Jun/2017 23:49:25] "POST /ueditor/controller/?imagePathFormat=courses%2Fueditor%2F&filePathFormat=courses%2Fueditor%2F&action=uploadvideo&encode=utf-8 HTTP/1.1" 403 2266

  错误原因:get_ueditor_controller() 方法没有csrf保护

  解决办法:

  在ueditor源码中的views.py文件中找到get_ueditor_controller函数,然后添加@csrf_exempt 装饰器

@csrf_exempt
def get_ueditor_controller(request):
    """获取ueditor的后端URL地址    """

    action=request.GET.get("action","")
    reponseAction={
        "config":get_ueditor_settings,
        "uploadimage":UploadFile,
        "uploadscrawl":UploadFile,
        "uploadvideo":UploadFile,
        "uploadfile":UploadFile,
        "catchimage":catcher_remote_image,
        "listimage":list_files,
        "listfile":list_files
    }
    return reponseAction[action](request)

 

以上是关于关于 DjangoUeditor 上传图片图片失败,csrf token missing or incorrect 的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

uni-app 图片上传压缩方法 拍照图片过大

图片批量压缩工具Caesium Portable便携版

关于thinkphp图片上传问题

关于图片上传时选择图片以后生成图片预览

thinkphp关于上传图片到数据库里面大小的问题

关于在ASP里ckeditor上传图片提示请输入图片地址,会的请指教下