为什么在iOS vue-resouce get请求中无法接受回调?

时间:2017-04-02 03:49:01

标签: ios

我在iOS的webview中嵌入了一个HTML。我想用vue-resouce框架发送ajax的请求。请求没问题,但为什么在iOS vue-resouce get请求中无法接受回调?

var vm = new Vue({
    el:'#check',
    data:{
        msg:'Hello World!',
        url:'http://localhost:8080/v1/user/check/'
    },
    methods:{
        get:function(token){
            alert(token)

            var realUrl = this.url + token

            this.$http.get(realUrl).then(function(response){
                alert('1')}
            ).then(function(response){
                alert(response);
                alert('1')
            });
        }
    }
});

function getToken() {
    var token = bridge.call("getToken")
    alert(token)
    vm.get(token);
}

0 个答案:

没有答案