version('v1', function ($api) { // 企业相关信息 $api->group(['prefix' => 'h5app', 'namespace' => 'CommentsBundle\Http\FrontApi\V1\Action', 'middleware' => ['dingoguard:h5app', 'api.auth'], 'providers' => 'jwt'], function ($api) { // 创建评论-已支持h5 $api->post('/wxapp/comment', ['as' => 'front.wxapp.comment.create', 'uses' => 'Comments@createComment']); // 获取评论列表-已支持h5 $api->get('/wxapp/comments', ['as' => 'front.wxapp.comment.list', 'uses' => 'Comments@getComments']); }); }); /* ↑↑↑↑↑ ↑↑↑↑↑ ↑↑↑↑↑ ↑↑↑↑↑ taro小程序、h5、app端、pc端 ↑↑↑↑↑ ↑↑↑↑↑ ↑↑↑↑↑ ↑↑↑↑↑ */