码迷,mamicode.com
首页 > 其他好文 > 详细

vue中fetch请求

时间:2019-06-25 23:23:07      阅读:605      评论:0      收藏:0      [点我收藏+]

标签:cat   his   header   word   返回   fetch   state   gif   head   

1. 请求方式:get

请求参数:menuName

返回的结果:data

created(){

         this._initPageData()

    },

    methods:{

            _initPageData(){

             fetch(‘http://localhost:3000/category/searchcategory?menuName=‘+this.menuName, {

              method: ‘get‘

            }).then(response => response.json()).then(data => {

               this.category = data.data;

               // console.log(this.category)

            })

          }

2. 请求方式:post

请求参数:username,password

返回的结果:data

fetch(‘http://localhost:3000/users/register‘, {

         method: ‘POST‘,

         headers: { ‘Accept‘: ‘application/json‘, ‘Content-Type‘: ‘application/json‘},

         body: JSON.stringify({ username:userPhone, password: userPassword})

         }).then(response => response.json()).then(data => {  

               console.log(data)

               if(data.state){

                alert(dat

vue中fetch请求

标签:cat   his   header   word   返回   fetch   state   gif   head   

原文地址:https://www.cnblogs.com/manban/p/11087297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!