你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
发现
话题
注册
登录
Lumen
lumen 如何使用多个数据库
没有找到相关结果
已邀请:
与内容相关的链接
提交
3 个回复
sun
赞同来自:
在config/database.php中配置好需要使用的数据库连接信息,然后在model中说明$connection使用哪个数据库就行,测试过MySQL和mongodb,可以用
class UserModel extends Model implements AuthenticatableContract, CanResetPasswordContract
{
use Authenticatable, CanResetPassword;
/**
* The connection name for the model.
*
* @var string
*/
protected $connection = 'mysql';
/**
* 表名
*
* @var string
*/
protected $table = 'users';
xiedaran
赞同来自:
lumen中是在env 配置的数据库
没有找到config/database.php 啊
sun
赞同来自:
默认情况下, Lumen 使用单一的 .env 文件来配置你的应用, 然而, 你也可以使用 Laravel 风格 的配置方法.
只需要把 vendor/laravel/lumen/config 文件夹下对应的配置文件复制到根目录下的 config 文件里面就行.
http://lumen.laravel-china.org ... files
要回复问题请先
登录
或
注册
发起人
xiedaran
相关问题
我想使用laravel的时间戳
自定义视图用于分页怎么使用?
队列怎么实现定时任务,类似于每天0点定时清除某个数据库
用sentry。。但是如果前台使用手机号登录,后台使用email登录,如何配置?
migrations中的结构生成器Schema怎么修改数据库的某个字段?
请教 如果我想把系统配置从数据库里面拿出来作为全局变量,我应该放在哪里了
laravel配置多数据库和操作多数据库
分享一个手册,关于laravel中函数的使用--Laravel Cheat Sheet
路由中使用中间件
laravel4.2 可以使用模块化modules吗?
配置database.php后怎么使用DB?
问题状态
最新活动:
2015-08-18 10:21
浏览:
10499
关注:
3
人
3 个回复
sun
赞同来自:
class UserModel extends Model implements AuthenticatableContract, CanResetPasswordContract
{
use Authenticatable, CanResetPassword;
/**
* The connection name for the model.
*
* @var string
*/
protected $connection = 'mysql';
/**
* 表名
*
* @var string
*/
protected $table = 'users';
xiedaran
赞同来自:
没有找到config/database.php 啊
sun
赞同来自:
只需要把 vendor/laravel/lumen/config 文件夹下对应的配置文件复制到根目录下的 config 文件里面就行.
http://lumen.laravel-china.org ... files