24 lines
970 B
PHP
24 lines
970 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
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');
|