$qwe = 'Вася';
$script = <<< JS
$.ajax({
type: 'GET',
url: '............',
data: { id: !!!!!! сюда вставить $qwe !!!!!!!},
});
JS;
$this->registerJs($script, yii\web\View::POS_READY);
$qwe = 'Вася';
$script = "
$.ajax({
type: 'GET',
url: '............',
data: { id: ".$qwe ."},
});
";
$this->registerJs($script, yii\web\View::POS_READY);