<th rowspan="2" st
-- Show.class.php
class ShowAction extends Action{
public function detail()
{
$customer = "Test assign customer";
$this->assign($customer);
$this->display();
}
}
浏览器访问http://localhost/index.php/Show/detail/为什么页面上没有$customer的值?
thinkphp 3.13 dwz
最佳答案