在Thunderclient中,我的API显示”处理中,请稍候…”并卡在这里。

huangapple go评论73阅读模式
英文:

In Thunderclient, my API is showing "Processing, Please Wait..." and stuck over here

问题

我正在使用JavaScript和Node.js来配置后端,并且我想执行CRUD操作。解决这个问题的正确方法是什么?

英文:

在Thunderclient中,我的API显示”处理中,请稍候…”并卡在这里。

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.

huangapple
  • 本文由 发表于 2023年7月20日 13:23:55
  • 转载请务必保留本文链接:https://go.coder-hub.com/76726891.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定