我是
javascript和web应用程序环境的新手.我见过一个反应式Web应用程序项目,它有一个公共目录,一个客户端目录和一个服务器目录.我有几个问题
>如果我们已经准备好后端API并准备好后端服务器,为什么我们需要在前端项目中设置快速服务器文件?
>如果我们在前端做出反应并调用API来获取应用程序的数据,我们是否需要一个快速服务器.
>前端项目中的后端服务器和快速服务器是否相同?
解决方法
Why do we need an express server file setup in the frontend project if we already have backend APIs ready and backend server ready
你没有.
您需要一个HTTP服务器来监听并响应您从客户端代码发出的任何Ajax请求.
您需要一个HTTP服务器来监听和响应您的页面所需的HTML文档和静态资源(JS,CSS,图像等)的任何请求.
这些可以是相同的HTTP服务器,不同的HTTP服务器,使用Express编写或不使用Express编写.
反应教程倾向于忽略提及这一点,并深入展示如何使用Express来实现一切.不要读太多.
Do we need an express server if we make the frontend on react and call the APIs to fetch the data for application.
不,见上文.
Isn’t the backend server and express server in the frontend project are same?
也许.它是由你决定.往上看.