我可以在一台服务器上托管Angular2前端和Golang后端

前端之家收集整理的这篇文章主要介绍了我可以在一台服务器上托管Angular2前端和Golang后端前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想用Golang创建RESTful API并使用Angular2创建前端.
将与http请求进行通信. Angular2将向Golang API发送请求.我知道Angular2我应该为路由和服务运行自己的http服务器.

我可以在一台主机上运行Golang服务器,在另一台主机上运行Angular2服务器并将它们连接在一起吗?

Angular2应用程序对应于一组静态文件(依赖项和应用程序代码).要让Go为您的应用程序提供服务,您需要添加一些代码来提供这些文件.

似乎有可能.看到这个链接

> https://github.com/golang/go/wiki/HttpStaticFiles

编辑

发表评论后:

If you want to host Angular2 and golang in one server. For example i will have access to web site with link mywebsite.com and access to golang api api.mywebsite.com

我看不出有任何理由不这样做.请注意在API中支持CORS(在响应中发送CORS头并支持预先刷新的请求).看到这些链接

> http://restlet.com/blog/2015/12/15/understanding-and-using-cors
> http://restlet.com/blog/2016/09/27/how-to-fix-cors-problems/

原文链接:https://www.f2er.com/angularjs/140279.html

猜你在找的Angularjs相关文章