不同資料格式 一般按照後端的要求來寫資料格式
阿新 • • 發佈:2022-12-02
不同資料格式 一般按照後端的要求來寫資料格式
1.formData 用new data 使用FormData包裹 2.application/json會自動對映 3.application/x-www-form-urlencoded url <body>
<h2>form-data</h2>
<input class="ipt" type="file" accept="image/*" />
<h2>application/json</h2>
<button class="json">測試登入介面</button>
<h2>urlencoded</h2>
<button class="urlencoded">測試urlencoded格式</button>
<script src="./lib/axios.js"></script>
<script>
// http://ajax-api.itheima.net/api/file
// 1.formData 用new data 使用FormData包裹
document.querySelector(".ipt").onchange = function (e) {
// 呼叫頭像上傳介面 提交圖片
const data = new FormData(); //用new data 使用FormData包裹
data.append("avatar", e.target.files[0]);
axios({
url: "http://ajax-api.itheima.net/api/file",
method: "post",
data: data,
}).then((res) => {
console.log("res:", res);
});
};
// 2.application/json會自動對映 返回的是JSON資料
document.querySelector(".json").onclick = function () {
axios
.post( "http://ajax-api.itheima.net/api/login", {
username: "admin",
password: "123456",
})
.then((res) => {
console.log("res:", res);
});
};
// 3.application/x-www-form-urlencoded url
document.querySelector(".urlencoded").onclick = function () {
axios({
url: "http://ajax-api.itheima.net/api/data",
method: "post",
data: "name=jack&age=18&friend=rose",
}).then((res) => {
console.log("res:", res);
});
};
</script>
</body>