$this->success('转账记录创建成功','Home/Bank/index',3);
首先程序正常运行
我想跳转到
http : // localhost/finance/index.php/Home/Bank/index
实际跳转到了这个地址
http :// localhost/finance/index.php/Admin/Bank/Home/Bank/index
特意给上2个地址加了空格免得各位点到无法访问
当然我知道可以用这个方法
$this->redirect("Home/Bank/index",array(),2,"转账记录创建成功");
但是界面太丑了不喜欢所以需要用success()方法来实现
请各位老师指教
看着总感觉好怪,首先是
http : // localhost/finance/index.php/Home/Bank/index
这个就不能变成http : // localhost/Home/Bank/index
这样吗,或许就是这个原因。或者
$this->success('转账记录创建成功','/Home/Bank/index',3);
试试