我有一個js文件,通過它我正在進行ajax調用來呈現視圖文件並傳遞一些數據。如何才能做到這一點?這裏是我的Ajax調用如何將參數從javascript文件傳遞給Yii2視圖?
$.ajax({
type: "GET",
url: "index.php?r=orders/on-select",
data: {myVar: myVar},
success: function (data) {
//I want to render the view here and pass the data
},
});
一些DIV顯示它更好的解釋,請.. Ajax調用是正確的..你有問題的服務器端? .. – scaisEdge