vue http请求 vue自带的 vue-resource

Posted chz1905

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue http请求 vue自带的 vue-resource相关的知识,希望对你有一定的参考价值。

vue-resource安装

npm install vue-resource --save-dev 

 

配置

在main.js中引入插件

//Resource 为自定义名   vue-resource 为插件的名字

import Vue from ‘vue‘

import Resource from ‘vue-resource‘ 

 

注册使用

//注册使用 vue-router

Vue.use(Router)

 

使用   跳转了解钩子函数

//created钩子函数 函数执行时 ----- 组件实例化完毕,单页面还未显示

created(){
    this.$http.get("https://jsonplaceholder.typicode.com/users")
    .then((data) => {
      console.log(data.body)
    })
}

 

以上是关于vue http请求 vue自带的 vue-resource的主要内容,如果未能解决你的问题,请参考以下文章

我可以使用 vue-resource 获得 httpOnly cookie 吗?

vue学习 ---- 使用vue-router 进行跳转

Vue路由实现:Vue.use(Router)中做了什么?

Vue3 & app.use 与 install 函数的作用

axios,vue-axios在项目中的应用

vuerouter-7._路由高亮