Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

nodejs代理cnodejs API 失败

$
0
0

最近在看Vue 用的vuecli生成的项目 配置了 proxyTable: {’/api’:‘https://www.cnodejs.org’}

数据访问用的 vue-resource

export default {
	components: {
    	Hello
  	},
  	ready: function () {
    	this.$http.get('/api/v1/topics', {}, {
      	emulateJSON: true
    }).then(function (response) {
      	var data = response.data
      	console.log(data)
    }, function (response) {
      	// handle error
    })
  }
}

访问http://localhost:8080/api/v1/topics 报错,提示 [HPM] PROXY ERROR: undefined. localhost -> https://www.cnodejs.org/api/v1/topics是我哪写的有问题吗


Viewing all articles
Browse latest Browse all 14821

Trending Articles