tp5中模型操作get或者find方法有什么区别
1个回答
展开全部
get是Model类里的,find是Query类里的,其实可以看看Model里get的实现,最终都是调用的是find
/**
* 查找单条记录
* access public
* @param mixed $data 主键值或者查询条件(闭包)
* @param array|string $with 关联预查询
* @param bool $cache 是否缓存
* return static
* @throws exception\DbException
*/
public static function get($data = null, $with = [], $cache = false)
{
$query = static::parseQuery($data, $with, $cache);
return $query->find($data);
}
/**
* 查找单条记录
* access public
* @param mixed $data 主键值或者查询条件(闭包)
* @param array|string $with 关联预查询
* @param bool $cache 是否缓存
* return static
* @throws exception\DbException
*/
public static function get($data = null, $with = [], $cache = false)
{
$query = static::parseQuery($data, $with, $cache);
return $query->find($data);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询