$this->view->assign('community',$this->communityModel->where(array('code'=>array('in',parent::getCommunityIdByAuth())))->field('code,name')->select());
时间: 2023-06-16 10:03:28 浏览: 169
这段代码是使用 ThinkPHP 框架中的模板引擎来渲染视图,其中 `$this->view->assign` 是为模板引擎分配变量,将 `$this->communityModel->where(array('code'=>array('in',parent::getCommunityIdByAuth())))->field('code,name')->select()` 查询到的数据赋值给了 `community` 变量。该查询语句是使用 `where` 方法传入条件数组,查询 `code` 字段值在 `parent::getCommunityIdByAuth()` 返回的数组中的记录,然后通过 `field` 方法指定要查询的字段,最终通过 `select` 方法执行查询操作。
阅读全文