February 2019
Intermediate to advanced
204 pages
4h 52m
English
We are going to use the same endpoint to list users and search users. Searching users is similar to listing users with search queries. To list users, follow these steps:
import request from 'utils/request';import qs from 'query-string';import { notification } from 'antd';import { call, put, takeLatest } from 'redux-saga/effects';import { USER_CREATE_REQUEST} from './constants';import { onCreateSuccess, ...