Git Product home page Git Product logo

longfeng-manage-react's People

Contributors

yaogengzhu avatar

Watchers

 avatar  avatar

longfeng-manage-react's Issues

react 初始化数据

react中初始化数据

constructor() {
   this.state = this.init()
}

init() {
  return {
       a: 1
  }
}

update() {

   this.setState(this.init())
}

react 中使用reducer管理数据

react 中如何使用reducer 管理数据

import React, { useReducer } from 'react'

const initData = 0

const dataReducer = (state: number, action: string) => {
	switch(action) {
		case 'add':
			return state + 1
		case 'reduce':
			return state - 1
		case 'reset':
			return state = 0
		default: throw new Error('Unexpected action')
	}
}

function Main() {
	//

	const [state, dispatch] = useReducer(dataReducer, initData)
	return (
		<div>
			<p>{ state }</p>
			<button 
				onClick={() => {
					dispatch('add')
				}}
			></button>
			<button 
				onClick={() => {
					dispatch('reduce')
				}}
			></button>

			{/* 重置 */}
			<button onClick={() => {
				dispatch('reset')
			}}>重置</button>
		</div>
	)
}

export default Main

react 中class组件自定义初始化props 数据

在class组件中初始化props 数据

import React from 'react';


interface IState {
	date: string
}

interface IProps {
	title: string
}
class Main extends React.Component<IProps, IState > {
	static defaultProps = {
		title: '您好'
	}
	constructor(props: IProps) {
		super(props)
		this.state = {
			date: '2020-02-09'
		}
	}

	render() {
		const { date } = this.state

		return (
			<div>
				<p>{ date }</p>
				<p>{this.props.title}</p>
			</div>
		)
	}
}

export default Main

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.