nodejs代理cnodejs API 失败
发布于 4 个月前 作者 Fsoya 661 次浏览 来自 问答

最近在看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 是我哪写的有问题吗

2 回复

proxyTable: { ‘/api’: {target: ‘https://www.cnodejs.org’; changeOrigin: true} } 试一下吧,不知道行不行

@Yakima-Teng 谢谢 可以了 文档看的不够仔细

回到顶部