编辑器上传文件 提示 TokenMismatchException in VerifyCsrfToken.php

我使用编辑器插入图片,是选中马上上传的,应该因为上传没带 VerifyCsrfToken 导致出错
请问有办法解决吗 上传文件处理代码:
if ($file = Request::file('upload_file'))
    {
        $fileName        = $file->getClientOriginalName();
        $extension       = $file->getClientOriginalExtension() ?: 'png';
        $folderName      = '/images';
        $destinationPath = public_path() . $folderName;
        $safeName        = uniqid().'.'.$extension;
        $file->move($destinationPath, $safeName);
    }

我用的是simditor编辑器
已邀请:

motecshine - 菜鸟

赞同来自:

跟编辑器没关系
form 下添加

<input  type="hidden" name="_token" value="<?php echo csrf_token()?>"/>

xlimit

赞同来自:

我没用过simditor编辑器,刚看了下文档发现配置选项中

QQ截图20150217153432.png


upload选项可以添加附加参数,把CsrfToken作为附加参数就行了。

要回复问题请先登录注册