国产+高潮+在线,国产 av 仑乱内谢,www国产亚洲精品久久,51国产偷自视频区视频,成人午夜精品网站在线观看

復(fù)制手冊(cè)demo為什么路由不生效?

aizuotu

問(wèn)題描述

官方demo 復(fù)制過(guò)來(lái)的,訪問(wèn):http://127.0.0.1:8787/test/
未如期返回 test
不知道是什么原因?

<?php
/**
 * This file is part of webman.
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the MIT-LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @author    walkor<walkor@workerman.net>
 * @copyright walkor<walkor@workerman.net>
 * @link      http://www.wtbis.cn/
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
 */

use Webman\Route;

Route::any('/test', function ($request) {
    return response('test');
});

報(bào)錯(cuò)信息

404

操作系統(tǒng)及workerman/webman等框架組件具體版本

linux

687 3 0
3個(gè)回答

whoami

人不行

  • aizuotu 2023-12-18

    已解決 不要以守護(hù)模式啟動(dòng)

TM

Route::group('/collect', function () use ($TOOL_MID) {
Route::group('/collect', function () {
Route::any('/addCollectForm', [\App\toolManage\controller\collect\CollectController::class, 'addCollectForm']);//提交表單
})->middleware($TOOL_MID);
})->middleware($TOOL_MID);

直接用any格式設(shè)置好用點(diǎn)

  • 暫無(wú)評(píng)論
Noah

/test/
/test
這是兩個(gè)不同的url。

  • 暫無(wú)評(píng)論
年代過(guò)于久遠(yuǎn),無(wú)法發(fā)表回答
??