我想在我的控制器函数中创建一个等于POST值的变量,但我不确定如何访问POST值。Yii2如何访问使用AJAX发送的POST数据
答案会很棒,但任何调试技巧都会很棒。
我已经试过$ _ POST [“save_id”]以及$ _ POST [0] [“save_id”]
$('#save-file').click(function() {
var fileid = $(this).data('fileid');
$.ajax({
type: "POST",
url: "/files/save",
data: { 'save_id' : fileid },
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
//do something
console.log(fileid);
alert("working");
},
error: function (errormessage) {
//do something else
alert("not working");
}
});
});
+0
这是你在找什么? http://www.yiiframework.com/doc-2.0/guide-runtime-requests.html#request-parameters –
+0
你想用你的ajax调用哪个php文件? –