好吧,我对此的直接回答是:不要.您可以通过更改数据模型并使用更高级的关系来完成任务.在不知道你想做什么的情况下很难说,但在我看来,这似乎是一个坏主意,特别是如果你打算使用雄辩的模型等等
原文链接:https://www.f2er.com/laravel/136613.html也就是说,在某些情况下,您确实需要更改另一个数据库中的数据或执行一些原始查询,您可以使用DB :: connection()方法.就像是:
$data = DB::connection('another_connection')->select(...);
您可以在database.PHP文件中指定another_connection变量.像这样:
<?PHP return array( 'default' => 'MysqL','connections' => array( # Your regular connection 'MysqL' => array( 'driver' => 'MysqL','host' => 'localhost','database' => 'database','username' => 'user','password' => 'password' 'charset' => 'utf8',),# Your new connection 'another_connection' => array( 'driver' => 'MysqL','host' => 'another_host','database' => 'another_db','username' => 'user1','password' => 'password1' 'charset' => 'utf8',);
您甚至可以使用protected $connection =’another_connection’为每个雄辩模型指定连接;您还可以为运行时创建/查询的每个模型实例指定连接
$user = new User; $user->setConnection('another_connection'); $user1 = $user->find(1);
但话说回来,我个人认为这不是一个好主意,而且在我看来,随着应用程序的复杂性增加,一切都会变得混乱并迅速崩溃.