我想在yii2中使用ajax上傳文件。 但它瀏覽器控制檯它顯示400在我的site_url不好請求 什麼是我的錯誤。 請幫助任何人。ajax錯誤400錯誤的請求
var site_url = '<?php echo Url::to (['formdata/movefile','id'=>'']); ?>' + unic ;
var file_data = $('#formdata-'+ form + '-' + component + '-c_data').prop('files')[0];
var form_data = new FormData();
form_data.append('file', file_data);
$.ajax({
url: site_url, // point to server-side PHP script
dataType: 'TEXT', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
data: { form_data:form_data,_csrf : '<?=Yii::$app->request->getCsrfToken()?>'},
type: 'POST',
success: function(php_script_response){
alert(php_script_response);
}
});
yaa ..其crct ...我的錯誤是在csrf啓用驗證 – Prabhakaran