有config/app.php
屬性url
。
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
*/
'url' => env('APP_URL', 'http://localhost'),
默認情況下,將其鏈接到名爲APP_URL
.env
文件的屬性。 XAMP通常要求您導航到localhost/project_folder
,然後才能訪問您的項目,因此您需要將url
屬性設置爲您正在使用的屬性。
其次,API路由通常以/api/
爲前綴,並且需要一個X-REQUESTED-WITH: XMLHttpRequest
標頭。
你好@pankaj歡迎Android開發:第一,提示是不是從APP(這是安裝你的應用系統),您可以點擊安裝和包被更新(希望你有我的觀點) – jagapathi
真正起作用的路由器列表您可以使用命令'php artisan route:list'來查看。你有沒有試過這麼做?你的名單上的地址? – Takamura
您確定這是正確的網址嗎?首先,我認爲API.php中的路由有一個api前綴,因此它應該是/ api/adminapi/public/api/v1/authenticateuser但是,您可能也有可能嘗試通過項目和公共訪問端點你應該從公共場合走出去。也許嘗試/ api/v1/authenticate或/ api/api/v1/authenticate用戶? –