vue系列——vue-resources入门案例

vue-resources入门案例

通过学习vue-resource,做了简单的几个demo:
演示效果图示:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
  <!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
    <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"
        integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
        crossorigin="anonymous">
    <script src="node_modules/vue/dist/vue.js"></script>
    <script src="node_modules/vue-resource/dist/vue-resource.js"></script>
</head>
<body>
<div id="app" class="container">
  <h1>vue-resource插件</h1>
  <a href="javascript:;" class="btn btn-primary" v-on:click="get">Get 请求</a>
  <a href="javascript:;" class="btn btn-primary" @click="post">Post 请求</a>
  <a href="javascript:;" class="btn btn-primary" @click="jsonp">Jsonp 请求</a>
  <a href="javascript:;" class="btn btn-primary" @click="http">http 请求</a>
  <div>{{msg}}</div>
</div>
<script>
  var vm = new Vue({
    el:'#app',
    data:{
      msg:''
    },
/*    mounted:function () {
      Vue.http.interceptors.push(function (request,next) {
        console.log("Request init!"),
          next(function (response) {
            console.log("Response init!")
            return response
          })

      })
    },*/
    methods:{
      get:function () {
        this.$http.get('package.json',{
          params:{
            userId:'12345',
            userName:'Jack'
          },
          headers:{
            token:'I AM A TOKEN'
          }
        }).then(res=>{
          this.msg=res.data;
        },error=>{
          this.msg=error;
        })
      },

      post:function () {
        this.$http.post('package.json',{
          userId:'5432',
          userName:'Tom'
        },{
          headers:{
            access_token:'hahhahhahha',
            token:'aaaaaaaaaaa',
            liuxzh:'jiayi'
          }
        }).then(function (res) {
          this.msg = res.data
        },function (error) {
          this.msg = error
        })
      },

      jsonp:function () {
        this.$http.jsonp('package.json').then(function (res) {
          this.msg = res.data;
        })
      },
      http:function () {
        this.$http({
          url:'package.json',
          params:{
            userId:'12345',
            userName:'JVMM'
          },
          headers:{
            token:'token definition from liuxzh',
            ahaname:'liuxzhz set'
          },
          timeout:15,
          before:function () {
            console.log("Request init!")
          }
        }).then(function (res) {
          this.msg = res.data;
        })
      }
    }
  })

</script>
</body>
</html>

这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值