redux-saga + typescript 使用 takeLatest 报错

发布于 2022-09-12 03:09:35 字数 1343 浏览 22 评论 0

代码

import { takeLatest, put, select } from 'redux-saga/effects'
import { GET_COMMENT_LIST } from './actionTypes'
import { fetch } from '../../../common/index'
import { initCommentList } from './actionCreators'

interface IAction {
  commentType?: string,
  page?: number | string
}

function* axiosCommentList({ commentType, page }: IAction) {
  const user = yield select((state: { user: { user: string } }) => state.user.user)

  try {
    const formData = {
      type: commentType,
      page: page,
      pageSize: 10,
      create_user: user,
      to_user: user
    }
    const {
      data: {
        data: { result, total }
      }
    } = yield fetch.post('/api/comment/getusercommentlist', formData)
    yield put(initCommentList(result, total))
  } catch (e) {
    console.log(e.message)
  }
}

export function* getCommentList() {
  yield takeLatest(GET_COMMENT_LIST, axiosCommentList)
}

takeLatest 会报错
image.png

No overload matches this call.  
The last overload gave the following error.  
类型“string”的参数不能赋给类型“TakeableChannel<unknown>”的参数。

但是我把 IAction 改下就不会报错了

interface IAction {
  commentType?: string,
  page?: number | string,
  [x: string]: any
}

=.=有没有大佬遇到过

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

無處可尋 2022-09-19 03:09:35

解决了

import { Action } from 'redux'
...
interface IState extends Action {
  commentType: string,
  page: number | string
}
...

IState 继承下官方 Action 即可

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文