修改文件上传

This commit is contained in:
Anyon 2019-11-04 18:57:08 +08:00
parent d97c1ad62d
commit aa9d9774d4
2 changed files with 14 additions and 3 deletions

View File

@ -1,9 +1,20 @@
<?php <?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://demo.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\admin\controller\api; namespace app\admin\controller\api;
use app\admin\service\AuthService; use app\admin\service\AuthService;
use think\admin\Controller; use think\admin\Controller;
use think\admin\Storage; use think\admin\Storage;
@ -70,7 +81,7 @@ class Upload extends Controller
} }
/** /**
* 生成文件上传参数 * 获取文件上传参数
* @return array * @return array
* @throws \think\Exception * @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException

View File

@ -136,7 +136,7 @@ class LocalStorage extends Storage
*/ */
public function upload() public function upload()
{ {
return url('@')->build() . '?s=admin/plugs/upload'; return url('@')->build() . '?s=admin/upload/file';
} }
} }