ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 跨域请求 ``` <?php namespace app\api\controller; use think\Controller; class Bass extends Controller { protected function initialize() { parent::initialize(); header(string:Access-Control-Allow-Origin:*); header(string:Access-Control-Allow-Headers:Authorization, Content-Type, If-Match, If-Modified-Since, If-None-Match, If-Unmodified-Since, X-Requested-With); header(string:Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS, PATCH); } } ```