使用api调用后出现此错误。我正在尝试从myjson api获取数据。我当前的执行方式有问题吗?还是有更好的方法来调用相同的api。
const fetchReportTemplate$: Epic<Store.IFSA> = (action$, state$) =>
action$.pipe(
ofType(startFetchReportsTemplate.toString(),
mergeMap(() => {
return defer(() =>
ajax(
{
url: 'https://api.myjson.com/bins/15dcd9',
body: ''
}
)
).pipe(
mergeMap(({ response: { data } }) => {
return of(clearAllHttpErrors(), receiveReportsTemplateRows(data))
})
)
})
))