gpt4 book ai didi

php - Laravel 嵌套路由问题

转载 作者:可可西里 更新时间:2023-10-31 22:44:06 26 4
gpt4 key购买 nike

我在使用 Laravel 4 嵌套路由时遇到问题。我可以显示创建方法表单但不能存储。这是代码,我就进入正题。我有一个基础资源 Controller 和另一个嵌套 Controller

This is in my Routes.php

Route::resource('profile','ProfileController');
Route::resource('profile.bands','BandsController');

我认为我不必在此处显示配置文件的代码,我将向您展示 BandsController

public function create($profileId)
{
return View::make('bands.create',['title' => 'Create Band Profile' , 'profileId' => $profileId]);
}

如您所知,这只会显示表单。形式是:

{{Form::open( [ 'route' => ['profile.bands.create',$profileId]])}}
<input class="input" type="text" name="name" value="" />
<input class="input" type="text" name="city" value="" />
<input type="submit" value="submit" />
{{Form::close()}}

现在,我不明白,当我在浏览器中查看时,表单操作 url 看起来不错,但是当我提交它时,我得到了这个错误。

Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException

open: E:\server\www\gigmor.com\gigmor\vendor\laravel\framework\src\Illuminate\Routing\Router.php
// The method not allowed exception is essentially a HTTP 405 error, so we
// will grab the allowed methods when converting into the HTTP Kernel's
// version of the exact error. This gives us a good RESTful API site.
elseif ($e instanceof MethodNotAllowedException)
{
$allowed = $e->getAllowedMethods();

throw new MethodNotAllowedHttpException($allowed, $e->getMessage());
}
}

我可能做错了什么?

最佳答案

MethodNotAllowedHttpException 表示您使用的 HTTP 方法不正确。您在只接受 GET 的路由上使用 POST。

在你的表单上,你必须使用路由

profile.bands.store

您的 .create 路由只是为了显示一个创建记录表单,要发布它您必须使用商店。

使用

查看您的路由名称和方法
php artisan routes

关于php - Laravel 嵌套路由问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19076378/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com