// +---------------------------------------------------------------------- use think\facade\Route; Route::get('think', function () { return 'hello,ThinkPHP8!'; }); Route::get('hello/:name', 'index/hello'); // 岗位简历匹配度计算接口 Route::post('match/calculate', '\app\controller\MatchController@calculate'); // 批量匹配查询接口(基于数据库) Route::post('match/batch', '\app\controller\MatchController@batchMatch');