douzhao7634 2015-12-26 11:15
浏览 53
已采纳

在actionView yii2中从url获取id值的问题

I'm trying to pass the id from the URL using the get method, but when I try to get it with actionView in the controllers. When I try to echo the id to check, if it passes the correct id from the URL. the value is always my controller ID. here is my view which passes the id when I click on delete button :

<?php
  foreach($twit as $twits){
?>


<header class="text-right">
    <div class="comment-user"> سبحان باقری <i class="fa fa-user"></i></div>
    <time class="comment-date" datetime="16-12-2014 01:05"> Dec 16, 2014 <i class="fa fa-clock-o"></i></time>
</header>
<div class="panel panel-default arrow left">

  <div class="panel-body">

    <?= Html::a('Delete','?r=twit/delete-twit&id='.$twits['id'],['class' => 'pull-left btn btn-danger btn-sm']); ?>
    <?= Html::a('Update','#&id='.$twits['id'],['class' => 'pull-left btn btn-primary btn-sm']); ?>


      <div class="comment-post">
          <p style="text-align:right;font-weight:bold;">
              <?php echo $twits['twit']; ?>
          </p>
      </div>
      <p class="text-right"><a href="#" class="btn btn-success btn-sm"><i class="fa fa-reply"></i> reply</a></p>
  </div>
</div>

<?php  } ?>

and here is my controller actionView which i want to get the id value and then send it to actionDeleteTwit :

public function actionView($id = null)
{
    echo $id;
    die();
}

and here is my actionDeleteTwit which i don't know how to pass the id value to it :

public function actionDeleteTwit()
{

    if(Yii::$app->request->get() && Yii::$app->request->get('id')){
        $id = Yii::$app->request->get('id');
        Twit::deleteTwit($id);
        \yii::$app->response->redirect('?r=twit/index',301)->send();
    }
}

(I don't want to use the Yii::$app->request->get('id') and I'm trying to use the actionView instead )

  • 写回答

1条回答 默认 最新

  • dqstti8945 2015-12-26 12:14
    关注

    You must change you delete action to a thing like this:

    public function actionDeleteTwit($id = null)
    {
        if(null != $id){
            Twit::deleteTwit($id);
            \yii::$app->response->redirect('?r=twit/index',301)->send();
        }
    }
    

    As you used this notation in your view action. If more help needed, more information from your problem is needed.

    Update: You must pass your numeric values in get method (Or more general based on your routing table, your other parameters) as a part of url, i.e. your view file must be like this:

    <?php
      foreach($twit as $twits){
    ?>
    
    
    <header class="text-right">
        <div class="comment-user"> سبحان باقری <i class="fa fa-user"></i></div>
        <time class="comment-date" datetime="16-12-2014 01:05"> Dec 16, 2014 <i class="fa fa-clock-o"></i></time>
    </header>
    <div class="panel panel-default arrow left">
    
      <div class="panel-body">
    
        <?= Html::a('Delete',['/twit/delete-twit', 'id' => $twits['id']],['class' => 'pull-left btn btn-danger btn-sm']); ?>
        <?= Html::a('Update','#&id='.$twits['id'],['class' => 'pull-left btn btn-primary btn-sm']); ?>
    
    
          <div class="comment-post">
              <p style="text-align:right;font-weight:bold;">
                  <?php echo $twits['twit']; ?>
              </p>
          </div>
          <p class="text-right"><a href="#" class="btn btn-success btn-sm"><i class="fa fa-reply"></i> reply</a></p>
      </div>
    </div>
    
    <?php  } ?>
    

    Please consider Yii2 Guide - Action Parameters for more information.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置