yii 페이지 점프 및 값 전송:
1. 동일한 컨트롤러에서 페이지 점프
$this->render('view页面',array('参数'=>'值')); $this->render('news',array('result'=>'123','result1'=>'456'));
url 리디렉션
$this->redirect(array('action方法')); $this->redirect(array('getnews','id'=>1,,,,));
2. 다른 컨트롤러에서 페이지 점프
$this->redirect(array('跳转到的controller/跳转到的controller里的action','参数'=>'值',,,,)); $this->redirect(array('user/getuser','id'=>1));
PHP 중국어 웹사이트, 무료가 많이 있습니다. Yii 입문 튜토리얼, 누구든지 배울 수 있습니다!
위 내용은 yii 페이지가 점프할 때 값을 전송하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!