doudao1922 2016-11-30 21:04
浏览 313
已采纳

使用PHP解析数组-YII2中的JS变量解析JS文件中的PHP数组

How should I do this?

 $ids = ArrayHelper::map(Tours::find()->select(['pk', 'programa'])->asArray()->all(), 'pk', 'programa');


$this->registerJs('
$("#child1_child2").change(function() {
    var val = $("#child1_child2 option:selected").val();
    valInt = parseInt(val);
    $("#form").attr("action", "programas/" + "'.$ids[.'"valInt"'.].'");
});
', \yii\web\View::POS_END);

I dont know how to parse this part:

$("#form").attr("action", "programas/" + "'.$ids[.'"valInt"'.].'");

$ids it's a php array

valInt is a js varibale

I thought this was correct but I'm getting parse error

syntax error, unexpected '.', expecting ']'

if I write "'.$ids[40].'" it works great and with no errors.

Thi is in the view of site/index.php, working with Yii2.

Thanks for the help!

  • 写回答

1条回答 默认 最新

  • dongqian9567 2016-11-30 21:53
    关注

    Try this

    $ids = ArrayHelper::map(Tours::find()->select(['pk', 'programa'])->asArray()->all(), 'pk', 'programa');
    
    
    $this->registerJs('
    $("#child1_child2").change(function() {
        var val = $("#child1_child2 option:selected").val();
        valInt = parseInt(val);
        var $ids = '. json_encode($ids) .';
        $("#form").attr("action", "programas/" + $ids[valInt]);
    });
    ', \yii\web\View::POS_END);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?