0

我是 yii 的初学者,我无法访问数组中的正确项目。我希望能得到一些帮助。我将在这里解释代码。如果输入实际代码更容易,请告诉我。

我的视图“punt”被渲染,“actionPunt”函数在“CompetitionsController”中被调用。该函数使用以下内容检索游戏及其数据:

// CompetitionsController 中的函数 actionPunt

$model=Competitions::model()->with(array('round', 'round.games', 'round.games.team1', 'round.games.team2', 'round.games.league',))  ->findByPk($id);

对于每个 ($model->round->games as $g) 都会发生以下两件事:

$leagues[$g->league_id] = array('name'=>$g->league->name, 'image'=>$g->league->image, 'federation'=>$g->league->federation_image);

$games[$g->league_id][$g->group][] = $g;

然后使用以下内容呈现视图:

$this->render('punt', array('model'=>$model, 'games'=>$games, 'leagues'=>$leagues, 'default_league'=>$default_league,));

//平底船视图

<table>
For every ($games as $game)
{   
    for every ($game as $group)
    {
        $grp=reset($group);

        for every ($group as $g)
        {
            <tr><td><?php echo CHtml::image($image_url.$g->team1->image, $g->team1->name); ?></td>      
                <td><?php echo CHtml::image($image_url.$g->team2->image, $g->team2->name); ?></td>
                <td><?php if($g->hasGameStarted())
                    {
                          echo CHtml::link('Punt', '#', array('onclick'=>'showDialog('.$model->id.','.$g->id.'); return false;',));
                    } ?>
            </td></tr>
        }
    }
}

所以基本上我有一个游戏列表,有team1和team2,游戏按联赛分组,当点击联赛时,比赛会刷新以显示该联赛的比赛

function showDialog(comp,game)
{   
     $("#competition_id").val(comp);    
     $("#game_id").val(game);   
     $("#punt_dialog").dialog("open");
}

从 showdialog 函数调用的 punt_dialog 是一个用于绘制表单的 CJuiDialog 小部件。该表单具有以下元素:

//表单ID“punt_form”

<label><input type="radio" name="punt" value="1">team1</label><label><input type="radio" name="punt" value="2">team2</label>

<label><input type="hidden" id="game_id" name="game_id" value="0" /><input type="hidden" id="competition_id" name="competition_id" value="0" /><input type="submit" value="Punt!" />

代码工作正常,对话框显示我可以选择 team1 或 team2 并且选择被保存并正确显示。但是我不想显示“team1”和“team2”。我想显示团队的名称。我尝试了很多事情,包括以下内容:

首先在对javascript的函数调用中:

showDialog('.$model->id.','.$g->id.');

我尝试添加参数: $g->team1->name 和 $g->team2->name

然后再添加两个参数:

function showDialog(comp,game)

但是这样做的结果是清除链接时没有出现对话框,实际上是屏幕,整个屏幕向上和向左移动一两个像素。

其次,我尝试了以下方法:

<label><input type="radio" name="punt" value="1">$g->team1->name</label>

这被证明是一个错误的黎明,因为该值始终包含数组中第一场比赛的 team1

最后,我还尝试以表格本身的形式进行测试:

   $testingteam=Game::model()->findByPk($g->id);

接着

<label><input type="radio" name="punt" value="1"><?php echo $testingteam->league_id; ?></label>

不过这也总是显示数组中第一场比赛的联赛。

我的目标是在 punt_dialog 小部件/表单中显示所选比赛的球队和联赛。注意解析到showDialog的两个值是competition_id和game_id,competition_id与联赛不同,一个比赛有多个联赛。

提前感谢您的帮助。

布伦。

4

1 回答 1

0

有什么问题:

echo CHtml::link('Punt', '#', array(
     'onclick'=>'showDialog(
             '.$model->id.','.$g->id.', 
             "'.$g->team1->name.'", 
             "'.$g->team2->name.'"); 
      return false;',));
function showDialog(comp,game, team1, team2)
{   
     $("#competition_id").val(comp);    
     $("#game_id").val(game);   
     $("#team1").text(team1);   
     $("#team2").text(team2);   
     $("#punt_dialog").dialog("open");
}
<label id="team1"><input type="radio" name="punt" value="1">team1</label>
<label id="team2"><input type="radio" name="punt" value="2">team2</label>

<label><input type="hidden" id="game_id" name="game_id" value="0" />
<input type="hidden" id="competition_id" name="competition_id" value="0" />
<input type="submit" value="Punt!" />
于 2013-02-13T13:50:09.607 回答