View层<===Model层<===Api 接口层<===反向代理
**
View层
**
- 使用connect链接model层
- 调用dispatch获取 add 下异步 Kan方法(Kan是设置在Model层的方法)
- 使用payload传递请求参数
- then会返回你所请求的值
- 使用Setstate放入state
- 在需要的地方遍历输出
import React from 'react';
import {
Breadcrumb, Table, Row, Col, DatePicker, Button, Form, Select } from 'antd';
import {
connect } from 'dva';
const {
Option } = Select;
@Form.create()//使用from表单时 需要添加
@connect(({
add})=>({
add
}))
class Examine extends React.Component {
constructor(props){
super(props);
this.state={
list:[],
}
}
componentDidMount(){
const {
dispatch } = this.props;
dispatch