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

网络请求

时间:2017-11-03 16:12:45      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:for   source   oct   []   his   公司   ted   返回   服务器   

fake api:
http://jsonplaceholder.typicode.com/posts
方便对于网络模块做测试。

正常情况,需要公司的服务器。

一、网络请求
需要vue-resource.js插件

this.$http
.get(‘url‘)
.then(function(response){
// response.data 就是服务器端所返回的数据
})

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="js/vue.js"></script>
    <script src="js/vue-resource.js"></script>
    
</head>
<body>
<div id="container">
    <p>{{msg}}</p>
    <ul>
        <li v-for="tmp in myList">{{tmp}}</li>
    </ul>
</div>
<script>
    new Vue({
        el: "#container",
        data: {
            msg: "Hello Vue",
            myList:[]
        },
        mounted:function(){
            //发起网络请求
            this.$http.get("data/test.json").then(function(response){
                console.log(response);
                this.myList = response.data;
            })
        }
    })
</script>
</body>
</html>
data/test.json文件
[ {"name":"Tom","age":20}, {"name":"Tom","age":20}, {"name":"Tom","age":20} ]

 

网络请求

标签:for   source   oct   []   his   公司   ted   返回   服务器   

原文地址:http://www.cnblogs.com/wangruifang/p/7778469.html

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