当前位置:   article > 正文

“yield“ 表达式隐式导致 “any“ 类型,因为它的包含生成器缺少返回类型批注。ts(7057)_yield" 表达式隐式导致 "any" 类型,因为它的包含生成器缺少返回类型批注。

yield" 表达式隐式导致 "any" 类型,因为它的包含生成器缺少返回类型批注。
redux-saga 使用yield报ts类型错误解决方案:
*getPlanById(
      { payload: id }: any, { call, put, select }: any
    ) {
      const res: any = yield call(planViewService.apiGetPlanById, id);
      if (res.code === 0) {
      	message.info('加载数据成功');
      } else {
        message.error('加载数据失败');
      }
    },
  },
上述代码会报
"yield" 表达式隐式导致 "any" 类型,因为它的包含生成器缺少返回类型批注。ts(7057)
错误
解决方法:
*getPlanById(
      { payload: id }: any, { call, put, select }: any
    ): any {
      const res: any = yield call(planViewService.apiGetPlanById, id);
      if (res.code === 0) {
      	message.info('加载数据成功');
      } else {
        message.error('加载数据失败');
      }
    },
  },
给方法增加返回类型any
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/285806
推荐阅读
相关标签
  

闽ICP备14008679号