💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 跨域请求 ``` <?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); } } ```