提交表单 Laravel 后重定向到不同的路由
Posted
技术标签:
【中文标题】提交表单 Laravel 后重定向到不同的路由【英文标题】:Redirecting to a different route after submit form Laravel 【发布时间】:2018-11-08 17:53:21 【问题描述】:我正在尝试在提交表单后将我的发布路线重定向到另一条路线。我一直在查看 Laravel 的文档,但我尝试的所有内容都将我重定向到同一页面。
这是控制器
ProductReviewController
public function store(Request $request, Product $product)
auth()->user()->reviews()->create($request->all());
return redirect()->route('welcome.show', compact('product'));
这是我尝试重定向的路线。
Web.php
Route::get('/products/product', [
'uses' => 'ProductController@showOne',
'as' => 'welcome.show'
]);
这是这条路线的控制器
产品控制器
public function showOne(Product $product, ProductReview $productReview)
return view('welcome.show', ['product' => $product]);
我做错了什么?因为每次我尝试重定向到这条路线时,都会向我抛出这个错误。
"Symfony\Component\HttpKernel\Exception\NotFoundHttpException"
当我更改控制器代码时抛出这个新错误:
新控制器代码
public function store(Request $request, Product $product)
auth()->user()->reviews()->create($request->all());
return redirect()->route('welcome.show', $product->id));
错误
"Missing required parameters for [Route: welcome.show] [URI: products/product]."
这些是视图:
Vue 组件
<template>
<form @submit.prevent="postReview">
<div class="form-group">
<p class="mt-4 text-center"><strong>How would you rate it?</strong></p>
<h4 class=" offset-md-3"><star-rating v-model="formData.rating"></star-rating></h4>
</div>
<hr>
<div class="form-group">
<label for="headline"><strong>Review title</strong></label>
<input type="text" class="form-control" v-model="formData.headline" id="headline" placeholder="Add a title for your review">
</div>
<div class="form-group">
<label for="description"><strong>Description</strong></label>
<textarea v-model="formData.description" class="w-100 rounded pl-2 pt-2 border border-muted" style="height:100px" id="description" cols="30" rows="10" placeholder="Tell us about your experiences with this product"></textarea>
</div>
<button class="btn btn-primary rounded offset-md-4" type="submit">Send review</button>
</form>
</template>
<script>
export default
props:['product','url', 'user'],
data()
return
formData:
,
methods:
postReview()
this.formData.product_id=this.product.id;
this.formData.user_name=this.user.first_name;
axios.post(this.url,this.formData)
.then(data=>
location.reload();
)
.catch(error=>
console.log(error.response);
)
,
</script>
刀片视图
@extends('layouts.app')
@section('title')
Review
@endsection
@section('content')
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="col-md-12 product-img">
<div class="card">
<div class="card-image">
<div class="carousel-item active">
<img class="d-block mx-auto" src=" $product->imageUrl " >
</div>
</div>
</div>
</div>
<h5 class="text-center"> $product->title </h5>
</div>
<div class="col-md-6" id="app">
<review-form
:user="Auth::user()"
:product="$product"
url="route('review.store')">
</review-form>
</div>
</div>
</div>
@endsection
【问题讨论】:
你可以手动去上述路线没有错误吗? 是的,我这样做没有任何问题 是store
函数中的$product
,不为空?
不,不是。这是一个对象,我做了一个 dd() 并显示了它的属性
【参考方案1】:
我刚刚通过添加以下内容解决了我的问题:
window.location.href = "/products/" + this.formData.product_id
这是我的新 Vuejs 文件:
<template>
<form @submit.prevent="postReview">
<div class="form-group">
<p class="mt-4 text-center"><strong>How would you rate it?</strong></p>
<h4 class=" offset-md-3"><star-rating v-model="formData.rating"></star-rating></h4>
</div>
<hr>
<div class="form-group">
<label for="headline"><strong>Review title</strong></label>
<input type="text" class="form-control" v-model="formData.headline" id="headline" placeholder="Add a title for your review">
</div>
<div class="form-group">
<label for="description"><strong>Description</strong></label>
<textarea v-model="formData.description" class="w-100 rounded pl-2 pt-2 border border-muted" style="height:100px" id="description" cols="30" rows="10" placeholder="Tell us about your experiences with this product"></textarea>
</div>
<button class="btn btn-primary rounded offset-md-4" type="submit">Send review</button>
</form>
</template>
<script>
export default
props:['product','url', 'user'],
data()
return
formData:
,
methods:
postReview()
this.formData.product_id=this.product.id;
this.formData.user_name=this.user.first_name;
axios.post(this.url,this.formData)
.then(data=>
window.location.href = "/products/" + this.formData.product_id;
)
.catch(error=>
console.log(error.response);
)
,
</script>
【讨论】:
【参考方案2】:您正在显示相同的路由名称并重定向相同的路由名称。试试这样:
return redirect('route name');
【讨论】:
我试过你所说的,它没有抛出任何错误,但它没有把我带到任何路线。它只是在我提交表单时重新加载我所在的路线。 试试 window.location.href="url";而不是 location.reload(); 我尝试了路由的名称和路由的 URL,但它没有将我重定向到另一个视图【参考方案3】:我不确定,但我猜 $product 是一个模型对象或我猜的其他类型的对象。在这种情况下,如果您的路线期望 $product->slug 或 $product->Id 然后
return route(“welcome.show”, [“product” => $product->id]);
只需返回路由 url,然后更改您的 Vue 组件脚本,如下所示:
<script>
export default
props:['product','url', 'user'],
data()
return
formData:
,
methods:
postReview()
this.formData.product_id=this.product.id;
this.formData.user_name=this.user.first_name;
axios.post(this.url,this.formData)
.then(function(response)
location.href = response;// Honestly i am not expert in vue but i would guess it should work something like this.
)
.catch(error=>
console.log(error.response);
)
,
</script>
【讨论】:
是的,我正在尝试重定向它,但现在我将其更改为您的代码。它给我带来了一个新的错误。看问题,我编辑了。 替换代码如:return redirect()->route(“welcome.show”,[“product” => $product->id]); 发送同样的错误。 "Symfony\Component\HttpKernel\Exception\NotFoundHttpException" 在您的代码中我无法理解的一件事是:为什么要使用 axios 发送 ajax 请求,然后为什么要重定向到另一条路线?如果你想发送一个 ajax 请求,那么在控制器中你只需返回你想要重定向的 url 并在你使用的 ajax 回调中:location.url = url_from_controller. 看看这个问题:***.com/questions/199099/…【参考方案4】:试试这个
return redirect()->action('ProductController@showOne', ['product' => $product]);
【讨论】:
【参考方案5】:In your js section you have added the code :
axios.post(this.url,this.formData)
.then(data=>
location.reload();
)
.catch(error=>
console.log(error.response);
)
here you are reloading the page..
write the redirection code at place of location.reload except in controller.
I hope it will work
【讨论】:
你知道我该怎么做吗?【参考方案6】:如果你的路由有参数,你可以将它们作为第二个参数传递给路由方法:
// For a route with the following URI: /products/product
return redirect()->route('welcome.show', ['product' => $product]);
【讨论】:
我正在这样做,但它给了我同样的错误。您认为哪个是问题所在?以上是关于提交表单 Laravel 后重定向到不同的路由的主要内容,如果未能解决你的问题,请参考以下文章