企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### view **新模板显示方法,加入公用的js及css** **参数** $result : V层 页面名称 ~~~ function view($result) { $c = file_get_contents ( 'includes/commonInclude.htm' ); $this->show->assign ( "#commonInclude#", $c ); $this->show->assign ( "#comboGrid#", "js/jquery/combo/business" ); $this->show->assign ( "#jsPath#", "view/template/" . str_replace ( '_', '/', $this->objPath ) . '/js' ); if (! empty ( $_GET ['skey'] )) { $this->show->assign ( "skey_", $_GET ['skey'] ); } $this->assignLang(); $this->createSubmitTag();////创建重复提交校验 $this->show->display ( $this->objPath . '_' . $this->objName . '-' . $result ); } ~~~