@guansixu
命名看起来和往常不太一样 但不知道在laravel里面不知道是啥统一规范
Model里面的 .class给扔到哪里去啦?
命名看起来和往常不太一样 但不知道在laravel里面不知道是啥统一规范
Model里面的 .class给扔到哪里去啦?
2016-12-31
框架具体我还没看,但根据以往的经验 where里面大概是这么个意思
public function where($xx, $oo){
$where = ....;
return $this;
}
where只是单纯的设置一下条件,update() 才是最终的提交到数据库吧..
so ...
public function where($xx, $oo){
$where = ....;
return $this;
}
where只是单纯的设置一下条件,update() 才是最终的提交到数据库吧..
so ...
2016-12-31
@小丑不丑1374
Access denied for user 'homestead'@'localhost' (using password: YES)
这个错误是说明连接数据库失败了,检查一下数据库配置文件是否配置正确
Access denied for user 'homestead'@'localhost' (using password: YES)
这个错误是说明连接数据库失败了,检查一下数据库配置文件是否配置正确
2016-12-30
关于laravel/public/index.php/basic1的问题,我使用的是Nginx服务器,只需要修改Nginx配置文件/etc/ngunx/sita-avilable/default
location / {
try_files $uri $uri/ /index.php?$query_string;
}
修改后重启nginx服务器,浏览器输入http://11.1.0.172/basic1 即可成功返回。
location / {
try_files $uri $uri/ /index.php?$query_string;
}
修改后重启nginx服务器,浏览器输入http://11.1.0.172/basic1 即可成功返回。