class Controller{ # 控制器基类
public function show(){ # 加载视图页面
require "./App/".PLATFORM."/View/".CONTROLLER."/".ACTION.".php";
}
老铁们,稳!
以上代码用了之后会导致Model层数据失效,所以修改了一下:
将以下代码放入Model中:
class Model{
# 加载视图页面
public function show(){
return "./App/".PLATFORM."/View/".CONTROLLER."/".ACTION.".php";
调用
$ind = new IndexModel();
require $ind->show();
以上代码用了之后会导致Model层数据失效,所以修改了一下:
将以下代码放入Model中:
class Model{
# 加载视图页面
public function show(){
return "./App/".PLATFORM."/View/".CONTROLLER."/".ACTION.".php";
}
}
调用
$ind = new IndexModel();
require $ind->show();