我在 Laravel 的数据库查询和参数绑定中使用参数时遇到了麻烦。
我收到此错误:
Error: "Column not found: 1054 Unknown column '3' in 'on clause'"
这是查询的一部分:
->join('foo AS f1', function($join) use ($bar)
{
$join->on('f1.foo', '=', 'f2.foo')
->on('f1.bar', '=', $bar);
})
如果我这样做,它会起作用:
->on('f1.bar', '=', DB::raw($bar));
有什么办法解决这个问题?我当然也想为此使用参数绑定。但是,当我这样做时:
->on('f1.bar', '=', ':bar', ['bar' => $bar]);
我明白了:
ErrorException in Grammar.php line 196:
Array to string conversion