赞
踩
- document.querySelector('.btn').addEventListener('click',async () => {
- const p = new URLSearchParams({pname:'浙江省',cname:'杭州市'})
- //1、如何请求?默认为get,参数1 url地址,返回promise
- const res = await fetch('http://hmajax.itheima.net/api/area?'+p.toString())
-
- if(res.status >= 200 && res.status < 300)
- {
- //2、如何处理响应(JSON),.json方法解析json返回promise
- const data = await res.json()
- }
- else{
- //3、处理异常
- console.log('请求异常',res.status)
- }
- })
- document.querySelector('.ipt').addEventListener('change',async function(){
- // querySelector获取的是一个dom对象,files是一个文件列表,[0]是第一个文件
- const img = this.files[0]
- // 创建一个formdata对象
- const data = new FormData()
- data.append('img',img)
- const res = await fetch('http://hmajax.itheima.net/api/uploadimg', {
- // 请求方法
- method: 'POST',
- // 提交数据
- body: data
- })
- // 解析返回的json数据
- const resData = await res.json()
- // 回显
- document.querySelector('.icon').src = resData.data.url
- document.querySelector('.btn').addEventListener('click',async function(){
- // 实例化Headers对象
- const headers = new Headers()
- // append 添加keyvalue
- headers.append('Content-Type','application/json')
-
- const res = await fetch('https://jsonplaceholder.typicode.com/posts',{
- method: 'POST',
- headers,
- // JSON.stringify()将对象转换为json字符串
- body: JSON.stringify({
- title: 'foo',
- body: 'bar',
- userId: 1
- })
- })
- // res.status 判断状态码
- const data = await res.json()
- console.log(data)
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。