-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
Description
所属功能组件
路由(Route)
ThinkPHP 版本
8.1.3
操作系统
macos 14
错误信息
路由定义如下:
Route::domain('aa')->append(['appid' => 1]);
Route::domain('bb')->append(['appid' => 2]);
Route::group(function () {
Route::get('domain_test', function () {
return request()->param();
});
})->allowCrossDomain();
8.0.4版本访问domain_test时能打印出appid参数
8.1.3则无法获取appid参数
其它说明
No response