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);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 jetson nano
  • ¥15 :app:debugCompileClasspath'.
  • ¥15 windows c++内嵌qt出现数据转换问题。
  • ¥20 公众号如何实现点击超链接后自动发送文字
  • ¥15 用php隐藏类名和增加类名
  • ¥15 算法设计与分析课程的提问
  • ¥15 用MATLAB汇总拟合图
  • ¥15 智能除草机器人方案设计
  • ¥15 对接wps协作接口实现消息发送
  • ¥15 SQLite 出现“Database is locked” 如何解决?