摘要:
class Ran extends Model { //模型Ran需要加入的方法 ranchang 这个名称随便取 //Ranchang 是关联的模型名 ranchang_id是外键 id是主键 LEFT是join类型 //setEagerlyType(0) 设置预载入方式 2个值 0 是JOIN方 阅读全文
摘要:
1、以下两种情况中,关联预载入两个表时,想要约束查询字段。thinkphp5.0中的方法失效,需要用以下方法withField,没有时间去研究具体的原因。 ->with(['user'=>function($query){$query->field('id,username,nickname,pre 阅读全文
摘要:
$list = User::field('id,name')->with(['profile'=>function($query){$query->field('email,phone');}])->select([1,2,3]); foreach($list as $user){ // 获取用户关 阅读全文
摘要:
public function index() { //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { //如果发送的来源是Selectpage,则转发到Selectpage 阅读全文