英文:
In Thunderclient, my API is showing "Processing, Please Wait..." and stuck over here
问题
我正在使用JavaScript和Node.js来配置后端,并且我想执行CRUD操作。解决这个问题的正确方法是什么?
英文:
I am using JavaScript and node js for configuring backend and I want to perform CRUD operations.
What should be the right way to solve this problem?
答案1
得分: 0
也许响应缺失,请检查您是否在API请求后发送了res.json或任何响应。
英文:
Maybe response is missing ,cross check if you are sending res.json or any response after api hit.
答案2
得分: 0
我找到了这个问题的解决方法。
在index.js文件中,我需要使用app.use(cors())而不是app.use(cors)。
因为这个原因,我的API不起作用。现在,在更新这个之后,它正在运行。
英文:
I found the solution of this question.
In index.js file, I need to use app.use(cors()) instead of app.use(cors) .
Because of this, My API is not working. Now, after updating this, Its working.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论