Front end : localhost:3000/yourfilename.html
**Front end** default port of xamp port is 80. So We re basically use
localhost/yourfilename.html. But Here used 3000 port. so We should call port
number with that url
**Back end** : localhost:8080/apiurl
It is ordinary port of backend.
5条答案
按热度按时间nlejzf6q1#
如果你在前端和后端运行两个独立的项目,你需要编写RESTAPI。要访问后端示例,您需要设置身份验证,它可能是CSRF或CORS。请查看spring Boot https://spring.io/guides/gs/rest-service-cors/的cors文档
它是用于csrf https://docs.spring.io/spring-security/site/docs/current/reference/html/csrf.html
pvcm50d12#
如果你试图与两个不同的项目通信,你需要编写RESTAPI,因为你使用不同的端口号,出于安全目的,你需要启用跨源。引用此https://www.concretepage.com/spring-4/spring-4-rest-cors-integration-using-crossorigin-annotation-xml-filter-example
fafcakar3#
字符串
6mzjoqzu4#
我使用Nestjs作为后端,下面的代码在main.ts文件中足以处理来自前端的请求。(根据您的要求调整URL)
字符串
dgtucam15#
401 Unauthorized
错误意味着您的前端确实能够与后端通信,但由于您设置的安全性,无法发送必要的信息来验证和授权请求。这就是为什么你得到一个401
错误。请确保前端发送所请求的信息以验证请求,或者确保用户具有访问所请求资源的适当授权。