所以我可以使用表单在我的数据库上创建一个新记录,但不知何故我无法使用表单删除我的数据库而现在,我正在使用laravel 5。 所以这是我的代码看起来像
routes.php文件
Route::get('/', [
'as' => '/',
'uses' => 'PagesController@getIndex'
]);
Route::resource('product', 'ProductController');
ProductController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
use DB;
use App\Product;
use resources\views\products;
class ProductController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$product = DB::select('select * from feedback');
return view('products.index')
->with('product',$product);
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('products.create');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
/*$rating = new Product;
$rating->Name= $request->name;
$rating->avg=$request->price;
$rating->save();*/
$inputs= $request->all();
$product= Product::create($inputs);
//return redirect()->route('product.index');
return redirect()->action('ProductController@index');
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
$product= Product::where('idoveralRating',$id)->first();
//return $product;
return view('products.show')
->with('product',$product);
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//echo '<script>console.log("bitch")</script>';
//Product::destroy($id);
$product= Product::where('idoveralRating',$id)
->delete();
return redirect()->route('product.show');
}
}
show.blade.php
@extends('layouts.layout')
@section('Head')
<h1>{{$product}}</h1>
@stop
@section('Body')
<h1>{{$product->Name}}</h1>
{!!Form::open([
'method' => 'delete',
'route'=> array('product.destroy',$product->id),
])!!}
{!!Form::submit('Delete')!!}
{!!Form::close()!!}
@stop
index.blade.php
@extends('layouts.layout')
@section('Head')
ALL Product
@stop
@section('Body')
@foreach($product as $col)
<h1>{{$col->Name}}</h1>
@endforeach
@stop
layout.blade.php
<!DOCTYPE html>
<html>
<head>
@yield('Head')
</head>
<body>
@yield('Body')
</body>
</html>
好的,所以我试图根据我在浏览器链接上键入的数据库ID删除我的数据库(所以我想输入product / 1),这意味着我要删除我的id为1的数据库。
到目前为止,我已经实现的是,我能够根据输入的id显示我的数据库但不知何故,当我想将id路由到ProductController类中的destroy方法时,它显示了method =&gt;'删除'不允许,我做错了什么?
答案 0 :(得分:3)
尝试使用'laravel数据绑定'。 在代码中添加到引导方法中的RouteServiceProvied.php:
$router->model('Product', Product::class);
并将控制器上的销毁方法更改为:
public function destroy(Product $product)
{
$product->delete();
return back();
}
您在 show.blade.php 文件中的路线必须如下:
'route'=> array('product.destroy', $product),
答案 1 :(得分:1)
FORM没有DELETE方法。
你必须像这样使用它:
在你的show.blade.php
中{!!Form::open([
'method' => 'post',
'route'=> array('product.destroy',$product->id),])!!}
{{ method_field('DELETE') }}
...
答案 2 :(得分:0)
我认为你的情况下的问题不在删除路线中。在destroy
方法中删除记录后,您将返回重定向到product.show
路由,这是必需参数id
。
所以试试
public function destroy($id)
{
$product= Product::where('idoveralRating',$id)
->delete();
return redirect()->route('product.index');
}
答案 3 :(得分:0)
好的我想回答我自己的问题,我的代码中的问题是我使用的默认主键等于id(换句话说,$ primaryKey ='id'),这就是为什么当我通过我的$ id来销毁它似乎是错误的,因为我传递了不属于该表的主键,这就是为什么删除方法似乎无法识别,因为你无法删除不存在的东西。
所以问题通过简单的步骤解决了 更改主键,protected $ primaryKey ='idOveralRating'(对于我的情况,它可以工作!)