class LoginController extends Controller {
public function Index(){
$this->display();
}
public function checkLogin(){
$this->redirect('Index/Index');
}
}
class IndexController extends Controller {
public function Index(){
$this->display();
}
}

然后请求地址都变了,也返回数据,为什么页面就是不会刷新。求大神教教
最佳答案
