Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はYIIフレームワークに取り組んでいます。ページにリダイレクトするフォームをコーディングし、ページにグリッドビューを表示します。それらをグリッドに直接移動するハッシュリンクにリダイレクトしたいと思います。実際にはグリッドに変更が加えられているためです。
$this->redirect(array('user/view','id'=>$mIntUserId));
既存のURLにハッシュリンクを追加するにはどうすればよいですか#userList。
#userList
yiiドキュメントから
ヒント:ハッシュタグ(例:/index.php?r=post/read&id=100#title)を使用してURLを生成するには、$ this-> createUrl('post / read'、array( 'id' => 100、'#' =>'title'))。
だからあなたの場合
$this->redirect(array('user/view','id'=>$mIntUserId,'#'=>'userList'));