php-Laravel:“ on子句”中的未知列$parameter
作者:互联网
我在使用数据库查询中的参数和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
解决方法:
当使用join连接两个表时,必须指定列名($bar必须等于列名字符串).因此,如果要发送一些参数数据,则必须使用where代替.
->join('foo AS f1', function($join) use ($bar)
{
$join->on('f1.foo', '=', 'f2.foo')
->where('f1.bar', '=', $bar);
})
标签:php,laravel,mysql,database,parameterbinding 来源: https://codeday.me/bug/20191011/1894981.html