12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- namespace app\index\controller;
- use app\common\controller\Frontend;
- use think\Lang;
- use think\Response;
- /**
- * Ajax异步请求接口
- * @internal
- */
- class Ajax extends Frontend
- {
- protected $noNeedLogin = ['lang', 'upload'];
- protected $noNeedRight = ['*'];
- protected $layout = '';
- /**
- * 加载语言包
- */
- public function lang()
- {
- $header = ['Content-Type' => 'application/javascript'];
- if (!config('app_debug')) {
- $offset = 30 * 60 * 60 * 24; // 缓存一个月
- $header['Cache-Control'] = 'public';
- $header['Pragma'] = 'cache';
- $header['Expires'] = gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
- }
- $controllername = input("controllername");
- $this->loadlang($controllername);
- //强制输出JSON Object
- return jsonp(Lang::get(), 200, $header, ['json_encode_param' => JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE]);
- }
- /**
- * 生成后缀图标
- */
- public function icon()
- {
- $suffix = $this->request->request("suffix");
- $suffix = $suffix ? $suffix : "FILE";
- $data = build_suffix_image($suffix);
- $header = ['Content-Type' => 'image/svg+xml'];
- $offset = 30 * 60 * 60 * 24; // 缓存一个月
- $header['Cache-Control'] = 'public';
- $header['Pragma'] = 'cache';
- $header['Expires'] = gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
- $response = Response::create($data, '', 200, $header);
- return $response;
- }
- /**
- * 上传文件
- */
- public function upload()
- {
- return action('api/common/upload');
- }
- }
|