使用流明从数据库中选择仅虚假数据

时间:2018-01-21 16:44:17

标签: php laravel-5 lumen-5.4

我是编码的新手,我正在尝试使用流明来构建API。现在我有了    问题,我找不到解决方案。这是我的代码。

$data = Speech::select('select * from speeches where is_requested = 0');
return response()->json(['status'=> 'Success', 'data' => $data], 200);

我去找出" is_requested"是假的。现在它给我一个空白    阵列。    请尽可能帮助我。{当然,对你们来说这很容易...... :)}

1 个答案:

答案 0 :(得分:1)

如果您在$app->withEloquent();文件中使用了雄辩(bootstrap/app.php),则可以这样做:

<?php
$data = Speech::where('is_requested', 0)->get();
return response()->json(['status'=> 'Success', 'data' => $data], 200);

没有雄辩,只需使用这样的数据库连接:

$data = app('db')->select("SELECT * FROM speeches WHERE is_requested = ?", [0]);

或者如果外墙已启用:

$data = DB::select("SELECT * FROM speeches WHERE is_requested = ?", [0]);