不确定为什么会这样。我之前使用过该方法,一切正常。由于某种原因,findOrFail没有将where子句添加到要执行的查询中。其他人遇到这个?我可以使用Model :: where()但我想弄清楚如果出现问题或者我错过了什么错误。
路线:
Route::get('/forums/topic/{id}/post/create', 'ForumController@topicPostCreate');
控制器:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Image;
use App\PostImage;
use Auth;
use App\Topic;
use App\Post;
use App\Http\Requests\SearchRequest;
use App\Http\Requests\PostImageRequest;
use App\Http\Requests\PostRequest;
use App\Http\Requests\TopicRequest;
use App\Http\Controllers\Controller;
class ForumController extends Controller
{
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the form for creating a new topic.
*
* @return \Illuminate\Http\Response
*/
public function topicPostCreate($id)
{
$results = Topic::findOrFail($id)->toSql();
dd($results);
}
}
型号:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Topic extends Model
{
protected $fillable = [
'title',
'user_id'
];
/**
* Many topics belong to one user
*/
public function user(){
return $this->belongsTo('App\User');
}
/**
* Each Topic has many posts
*
*/
public function posts()
{
return $this->hasMany('App\Post');
}
}
从dd()函数返回的查询如下:
"select * from `topics`"
任何人都有任何关于为什么会这样做的想法?一定有充分的理由。我可能遗失的东西...... ???
答案 0 :(得分:2)
findOrFail
返回一个新的,填充的Topic
- 实例,其中包含空白查询。这就是为什么你没有看到任何where
的原因,因为查询中的那些已经被执行了。
如果您想查看正在运行的实际查询,您可以尝试收听数据库查询(暂时将其放在routes.php
中)
\DB::listen(function($sql) {
dump($sql);
});