javascript - 在请求的回调函数中发起请求是不是不好?
PHP中文网
PHP中文网 2017-04-17 16:32:37
0
1
317

前端学习nodejs,以前写这种需要两个接口数据的时候,都是请求一个接口,然后在回调函数中再请求下一个接口,然后第二次请求的回调函数中处理数据,这次是用express和vue写一个类似dotamax的东西,用的opendota的接口,在输入id的入口处,我想请求该用户的个人信息(如头像,id,昵称等),同时还想请求该用户在近期的5场比赛,所以就还是先请求players这个接口,然后在回到函数里面请求matches的数据,我总觉得这样不是很好。
菜鸟,望大家指教。

PHP中文网
PHP中文网

认证0级讲师

reply all(1)
PHPzhong

Not good
Caught in callback hell.
Solution:

  1. Promise

  2. async/await

  3. Events


Judging from your code, it is relatively easy to access using events.
1. Listen to the event after the first function is executed [assuming 'request1done']
2. Trigger the event ['request1done'] in the first function callback

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template