傳遞一個參數時,這是我的代碼錯誤在一個路線laravel 5.2
- route.php
Route::get('test/{id}','[email protected]');
- testController.php
test.blade.php
<!DOCTYPE html> <html> <head> <title>a</title> </head> <body> <img src="myPath/myImage.jpg"> </body> </html>
public function test($id){ return('test'); }
其結果是:圖像不能是負載
注:當我刪除的 'id'參數已完美運作
這是因爲您正在使用圖像源的相對URL。將圖像源更新爲絕對網址。 – chanafdo
您需要使用'href =「{{URL :: to('yourfile')}}」'。你應該把你的圖像放在公共文件夾中。如果你要在公共文件夾中創建文件夾img,那麼你需要像這樣:'' –
謝謝你的工作= D = D @forexknight –