企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
### c\_init **初始化对象** 跳转 编辑/查看页面 参数 : perm = view/edit ~~~ function c_init() { $this->permCheck (); //安全校验 $obj = $this->service->get_d ( $_GET ['id'] ); foreach ( $obj as $key => $val ) { $this->assign ( $key, $val ); } if (isset ( $_GET ['perm'] ) && $_GET ['perm'] == 'view') { $this->display ( 'view' ); } else { $this->display ( 'edit' ); } } ~~~