1.引入jqueryjavascript
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
2.請求html
$.ajax({ url: '', data: fd, type: 'POST', contentType:false, //必須false纔會避開jQuery對 formdata 的默認處理 , XMLHttpRequest會對 formdata 進行正確的處理 processData: false, //必須false纔會自動加上正確的Content-Type success: function(res){ console.log(res); //res = JSON.parse(res); //JSON.stringify(res.data) }, error: function(err){ console.log(err); } });