laravel5.4怎么用不了beforefilter
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel5.4怎么用不了beforefilter相关的知识,希望对你有一定的参考价值。
以前用laravel4.2构造函数可以用beforefilter,很方便,现在用laravel5.4怎么不能用了,有大神知道怎么回事吗? 有代替的方法吗??
参考技术A 可以在构造函数中注册一个 beforefilter 放在方法最前,```
# e.g. in the routes
Route::resource('fooresource', 'Some\Thing\FooController');
class FooController extends Controller
public function __construct()
# the @ makes it look for this function inside the controller instance.
$this->beforeFilter('@foofunc', ['only' => ['edit', 'delete', 'update']]);
public function foofunc(\Illuminate\Routing\Route $route, \Illuminate\Http\Request $request = null, $value = null)
dd([$route->parameters(), $request->all(), get_class($value)]);
```
laravel orm where 条件中 mysql函数 怎么用
这种ORM,肯定会支持的一个功能就是 直接使用原生SQL。所以~ 懂了吧
-- 1.插入数据DB::insert('insert into users (id, name, email, password) values (?, ?, ? , ? )',[1, 'Laravel','laravel@test.com','123']);
-- 2.查询语句
$user = DB::select('select * from users where id = ?', [1]);
-- 我们还 可以看到在执行查询的时候使用了参数绑定,以避免SQL注入。除此之//外还可以使用命名绑定:
$user = DB::select('select * from users where id = :id', [':id'=>1]);
-- 3.更新语句
$affected = DB::update('update users set name="LaravelAcademy" where name = ?', ['Academy']);
-- 4.删除语句
$deleted = DB::delete('delete from users');
但是这种使用MySQL函数,会导致不通用。这一点需要考虑一下~
参考技术A 直接调用不就好吗例如 $count = User::where('votes', '>', 100)本回答被提问者采纳
以上是关于laravel5.4怎么用不了beforefilter的主要内容,如果未能解决你的问题,请参考以下文章
如何将控制器中的 Laravel 4.2 beforeFilter 转换为 Laravel 5.2 中的自定义中间件