摘要: TodoList.js componentDidMount(){ store.subscribe(this.storeChange) //订阅 axios.get('https://........').then((res)=>{ const data=res.data const action=g 阅读全文
posted @ 2022-06-21 23:52 SimoonJia 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 删除this,用props作为参数代替this.props 性能比类组件性能优秀 JSX语法必须引入React TodoListUI.js import React from 'react' import {Input,Button,List} from 'antd' const TodoListU 阅读全文
posted @ 2022-06-21 23:21 SimoonJia 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 将组件中所用数据和方法通过props传给子UI组件,子UI组件调用这些数据和方法完成页面渲染(业务逻辑层的构造函数不变) TodtListUI.js import React, { Component } from 'react' import {Input,Button,List} from 'a 阅读全文
posted @ 2022-06-21 02:30 SimoonJia 阅读(109) 评论(0) 推荐(0) 编辑
摘要: export const getListAction=(data)=>({ type:GET_LIST, data }) const action=getListAction(data) 调用该方法,取到的是括号内部的值 所以该写法可看作()=>{return{}} 首先这里用的时ES6的箭头函数 阅读全文
posted @ 2022-06-21 02:22 SimoonJia 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 报错的意思应该是因为必须在组件挂载后订阅 componentDidMount(){ // store.subscribe(this.storeChange) //订阅 } 阅读全文
posted @ 2022-06-21 02:11 SimoonJia 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1.store必须是唯一的,多个store是坚决不允许的,只能有一个store空间 现在看 TodoList.js 的代码,就可以看到,这里有一个 /store/index.js 文件,只在这个文件中用 createStore() 方法,声明了一个 store,之后整个应用都在使用这个 store。 阅读全文
posted @ 2022-06-21 01:44 SimoonJia 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1.使用actionTypes.js文件定义Type减少代码冗余,代码复用 export const CHANGE_INPUT='changeInput' export const ADD_ITEM='addItem' export const DELETE_ITEM='deleteItem' im 阅读全文
posted @ 2022-06-21 01:37 SimoonJia 阅读(14) 评论(0) 推荐(0) 编辑
摘要: export default function useCheckLogin(){ const [loginstate,setLoginState]=useState(false); let username=localStorage.getItem('user'); if(username!=nul 阅读全文
posted @ 2022-06-21 00:10 SimoonJia 阅读(20) 评论(0) 推荐(0) 编辑
摘要: import axios from "axios"; const baseUrl = "http:/123.57.50.179:8900"; const getRequest = (path, params) => { return axios.get(baseUrl + path, { param 阅读全文
posted @ 2022-06-21 00:09 SimoonJia 阅读(209) 评论(0) 推荐(0) 编辑
摘要: import localStorage from "localStorage";//引入 localStorage.setItem("userInfo", JSON.stringify(res.data.data));//存 localStorage.setItem("user", res.data 阅读全文
posted @ 2022-06-21 00:04 SimoonJia 阅读(778) 评论(0) 推荐(0) 编辑