我正在使用集成的REST API将Go应用程序作为Web服务器运行。 在我的本地计算机上,这工作正常。 但是,在Heroku上,在浏览器中出现以下错误: “ SyntaxError:JSON.parse:JSON数据第1行第5列的JSON数据后出现意外的非空白字符”
我什至无法通过邮递员呼叫REST URL,得到404。
也许我在Heroku中某个地方配置了错误的内容, 但这与我的本地计算机上的应用程序完全相同。 Google对此也无济于事。 我唯一的想法是路由在heroku上不起作用。 这就是我通过javascript / axios在本地和heroku上拨打电话的方式。
axios({
method: 'post',
url: '/api/v1/user/login',
data: {
username: "test",
email: "email",
password:"pass",
}
})
.then(res => console.log(res))
.catch(err => console.log(err));