更新tp内核

This commit is contained in:
2016-09-20 22:58:29 +08:00
parent 8e3a918182
commit 3edc0909c0
4 changed files with 31 additions and 8 deletions

View File

@@ -39,11 +39,12 @@ use think\paginator\Collection as PaginatorCollection;
*/
abstract class Model implements \JsonSerializable, \ArrayAccess
{
// 数据库对象池
protected static $links = [];
// 数据库配置
protected $connection = [];
// 数据库查询对象
protected $query;
// 当前模型名称
protected $name;
// 数据表名称
@@ -147,7 +148,7 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
$model = $this->class;
if (!isset(self::$links[$model])) {
// 设置当前模型 确保查询返回模型对象
$query = Db::connect($this->connection)->model($model);
$query = Db::connect($this->connection)->model($model, $this->query);
// 设置当前数据表和模型名
if (!empty($this->table)) {
@@ -666,6 +667,10 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
if (!empty($where)) {
$pk = $this->getPk();
if (is_string($pk) && isset($data[$pk])) {
if (!isset($where[$pk])) {
unset($where);
$where[$pk] = $data[$pk];
}
unset($data[$pk]);
}
}