美文网首页
2018-01-18 generator/ saga

2018-01-18 generator/ saga

作者: NOTEBOOK2 | 来源:发表于2018-01-18 10:50 被阅读0次
page-1-4-web_inventory_attrributes.png
 componentWillMount() {
   this.task = runSaga({
     dispatch: (attributes: CustomField[]) =>  this.setState({attributes}),
   }, saga)
 }

[at-loader] ./src/pages/Inventory/Inventory/Edit/Attributes.tsx:37:7 TS2345: Argument of type '{ dispatch: (attributes: CustomField[]) => void; }' is not assignable to parameter of type 'Iterator<any>'. Object literal may only specify known properties, and 'dispatch' does not exist in type 'Iterator<any>'.

import { RouteComponentProps } from "react-router-dom"
type P =  FormProps&RouteComponentProps<{storeId: string}>
this.saga = this.saga.bind(this)
  componentWillMount() {
    this.task = runSaga({
      dispatch: (attributes: CustomField[]) =>  this.setState({attributes}),
    }, this.saga)
  }
屏幕快照 2018-01-18 12.18.48.png 屏幕快照 2018-01-18 12.19.02.png

相关文章

  • 2018-01-18 generator/ saga

    [at-loader] ./src/pages/Inventory/Inventory/Edit/Attribut...

  • Redux-Saga的理解与实现

    基础流程 在saga中需要对不同的业务写不同的generator函数,然后通过take(redux-saga暴露的...

  • generator函数

    之前写redux-saga的使用时用到了generator函数,今天我们来看看generator函数的简单用法. ...

  • redux-saga

    1 概述 redux-saga 是 redux 一个中间件,用于解决异步问题。 2 es6 Generator 解...

  • 解决Uncaught ReferenceError: regen

    我的报错环境: Taro引入redux-saga报错 主要原因: 某些环境下不支持generator函数,比如小程...

  • Generator函数注意点

    2017/06/06学习redux-saga过程中,发现它使用到了Generator函数,把这个仔细读了一遍。Ge...

  • 一个generator自动执行器

    一个generator自动执行器 最近看 redux-saga的源代码, 作者写的yield执行器代码非常不错,详...

  • redux-saga

    Redux-saga主要用来执行数据流中的异步操作。主要通过ES6中的generator函数和yield关键字来以...

  • 2018-01-19

    2018-01-18 文闻13873137878 2018-01-18 20:29 · 字数 150 · 阅读 0...

  • 素描石膏头像-海盗

    2018-01-18

网友评论

      本文标题:2018-01-18 generator/ saga

      本文链接:https://www.haomeiwen.com/subject/ltiioxtx.html