当前位置: 首页 > news >正文

海淀网站设计公司/郑州网站建设哪家好

海淀网站设计公司,郑州网站建设哪家好,腾讯云网页制作,美国外贸网站通过实例给大家分享了编写React组件项目实践的全过程,写的十分的全面细致,具有一定的参考价值,对此有需要的朋友可以参考学习下。如有不足之处,欢迎批评指正。 开始前: 我们使用ES6、ES7语法如果你不是很清楚展示组件和…

通过实例给大家分享了编写React组件项目实践的全过程,写的十分的全面细致,具有一定的参考价值,对此有需要的朋友可以参考学习下。如有不足之处,欢迎批评指正。

开始前:

我们使用ES6、ES7语法如果你不是很清楚展示组件和容器组件的区别,建议您从阅读这篇文章开始如果您有任何的建议、疑问都清在评论里留言 基于类的组件
现在开发React组件一般都用的是基于类的组件。下面我们就来一行一样的编写我们的组件:

import React, { Component } from 'react';
import { observer } from 'mobx-react';import ExpandableForm from './ExpandableForm';
import './styles/ProfileContainer.css';

其实我很喜欢css in javascript。但是,这个写样式的方法还是太新了。所以我们在每个组件里引入css文件。而且本地引入的import和全局的import会用一个空行来分割。

初始化State
import React, { Component } from 'react'
import { observer } from 'mobx-react'import ExpandableForm from './ExpandableForm'
import './styles/ProfileContainer.css'//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860
export default class ProfileContainer extends Component {state = { expanded: false }

可以使用了老方法在constructor里初始化state。更多相关可以看这里。但是我们选择更加清晰的方法。
同时,我们确保在类前面加上了export default。(译者注:虽然这个在使用了redux的时候不一定对)。

propTypes and defaultProps
import React, { Component } from 'react'
import { observer } from 'mobx-react'
import { string, object } from 'prop-types'import ExpandableForm from './ExpandableForm'
import './styles/ProfileContainer.css'export default class ProfileContainer extends Component {state = { expanded: false }static propTypes = {model: object.isRequired,title: string}  static defaultProps = {model: {id: 0},title: 'Your Name'}// ...
}//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860

propTypes和defaultProps是静态属性。尽可能在组件类的的前面定义,让其他的开发人员读代码的时候可以立刻注意到。他们可以起到文档的作用。
如果你使用了React 15.3.0或者更高的版本,那么需要另外引入prop-types包,而不是使用React.PropTypes。更多内容移步这里。
你所有的组件都应该有prop types。

方法

import React, { Component } from 'react'
import { observer } from 'mobx-react'
import { string, object } from 'prop-types'import ExpandableForm from './ExpandableForm'
import './styles/ProfileContainer.css'export default class ProfileContainer extends Component {state = { expanded: false }static propTypes = {model: object.isRequired,title: string}static defaultProps = {model: {id: 0},title: 'Your Name'}handleSubmit = (e) => {e.preventDefault()this.props.model.save()}handleNameChange = (e) => {this.props.model.changeName(e.target.value)}  handleExpand = (e) => {e.preventDefault()this.setState({ expanded: !this.state.expanded })} // ... 
}//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860

在类组件里,当你把方法传递给子组件的时候,需要确保他们被调用的时候使用的是正确的this。一般都会在传给子组件的时候这么做:this.handleSubmit.bind(this)。
使用ES6的箭头方法就简单多了。它会自动维护正确的上下文(this)。
给setState传入一个方法
在上面的例子里有这么一行:

this.setState({ expanded: !this.state.expanded });

setState其实是异步的!React为了提高性能,会把多次调用的setState放在一起调用。所以,调用了setState之后state不一定会立刻就发生改变。
所以,调用setState的时候,你不能依赖于当前的state值。因为i根本不知道它是值会是神马。
解决方法:给setState传入一个方法,把调用前的state值作为参数传入这个方法。看看例子:

this.setState(prevState => ({ expanded: !prevState.expanded }))

拆解组件

import React, { Component } from 'react'
import { observer } from 'mobx-react'import { string, object } from 'prop-types'
import ExpandableForm from './ExpandableForm'
import './styles/ProfileContainer.css'export default class ProfileContainer extends Component {state = { expanded: false }//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860static propTypes = {model: object.isRequired,title: string}static defaultProps = {model: {id: 0},title: 'Your Name'}handleSubmit = (e) => {e.preventDefault()this.props.model.save()}handleNameChange = (e) => {this.props.model.changeName(e.target.value)}handleExpand = (e) => {e.preventDefault()this.setState(prevState => ({ expanded: !prevState.expanded }))}//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860render() {const {model,title} = this.propsreturn ( <ExpandableForm onSubmit={this.handleSubmit} expanded={this.state.expanded} onExpand={this.handleExpand}><div><h1>{title}</h1><inputtype="text"value={model.name}onChange={this.handleNameChange}placeholder="Your Name"/></div></ExpandableForm>)}
}

有多行的props的,每一个prop都应该单独占一行。就如上例一样。要达到这个目标最好的方法是使用一套工具:Prettier。

装饰器(Decorator)

@observer
export default class ProfileContainer extends Component {

如果你了解某些库,比如mobx,你就可以使用上例的方式来修饰类组件。装饰器就是把类组件作为一个参数传入了一个方法。
装饰器可以编写更灵活、更有可读性的组件。如果你不想用装饰器,你可以这样:

class ProfileContainer extends Component {// Component code
}//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860
export default observer(ProfileContainer)

闭包

尽量避免在子组件中传入闭包,如:

<inputtype="text"value={model.name}// onChange={(e) => { model.name = e.target.value }}// ^ Not this. Use the below:onChange={this.handleChange}placeholder="Your Name"/>

注意:如果input是一个React组件的话,这样自动触发它的重绘,不管其他的props是否发生了改变。
一致性检验是React最消耗资源的部分。不要把额外的工作加到这里。处理上例中的问题最好的方法是传入一个类方法,这样还会更加易读,更容易调试。如:

import React, { Component } from 'react'
import { observer } from 'mobx-react'
import { string, object } from 'prop-types'
// Separate local imports from dependencies
import ExpandableForm from './ExpandableForm'
import './styles/ProfileContainer.css'
//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860 
// Use decorators if needed
@observer
export default class ProfileContainer extends Component {state = { expanded: false }// Initialize state here (ES7) or in a constructor method (ES6)// Declare propTypes as static properties as early as possiblestatic propTypes = {model: object.isRequired,title: string}// Default props below propTypesstatic defaultProps = {model: {id: 0},title: 'Your Name'}//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860// Use fat arrow functions for methods to preserve context (this will thus be the component instance)handleSubmit = (e) => {e.preventDefault()this.props.model.save()}handleNameChange = (e) => {this.props.model.name = e.target.value}handleExpand = (e) => {e.preventDefault()this.setState(prevState => ({ expanded: !prevState.expanded }))}render() {// Destructure props for readabilityconst {model,title} = this.propsreturn ( <ExpandableForm onSubmit={this.handleSubmit} expanded={this.state.expanded} onExpand={this.handleExpand}>// Newline props if there are more than two<div><h1>{title}</h1><inputtype="text"value={model.name}// onChange={(e) => { model.name = e.target.value }}// Avoid creating new closures in the render method- use methods like belowonChange={this.handleNameChange}placeholder="Your Name"/></div>//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860</ExpandableForm>)}
}

方法组件

这类组件没有state没有props,也没有方法。它们是纯组件,包含了最少的引起变化的内容。经常使用它们。
propTypes

import React from 'react'
import { observer } from 'mobx-react'
import { func, bool } from 'prop-types'
import './styles/Form.css'
ExpandableForm.propTypes = {onSubmit: func.isRequired,expanded: bool
}//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860
// Component declaration

我们在组件的声明之前就定义了propTypes。
分解Props和defaultProps

import React from 'react'
import { observer } from 'mobx-react'
import { func, bool } from 'prop-types'
import './styles/Form.css'ExpandableForm.propTypes = {onSubmit: func.isRequired,expanded: bool,onExpand: func.isRequired
}
//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860 
function ExpandableForm(props) {const formStyle = props.expanded ? {height: 'auto'} : {height: 0}return (<form style={formStyle} onSubmit={props.onSubmit}>{props.children}<button onClick={props.onExpand}>Expand</button></form>)
}

我们的组件是一个方法。它的参数就是props。我们可以这样扩展这个组件:

import React from 'react'
import { observer } from 'mobx-react'
import { func, bool } from 'prop-types'
import './styles/Form.css'//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860
ExpandableForm.propTypes = {onSubmit: func.isRequired,expanded: bool,onExpand: func.isRequired
}function ExpandableForm({ onExpand, expanded = false, children, onSubmit }) {const formStyle = expanded ? {height: 'auto'} : {height: 0}return (//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860<form style={formStyle} onSubmit={onSubmit}>{children}<button onClick={onExpand}>Expand</button></form>)
}

现在我们也可以使用默认参数来扮演默认props的角色,这样有很好的可读性。如果expanded没有定义,那么我们就把它设置为false。
但是,尽量避免使用如下的例子:

const ExpandableForm = ({ onExpand, expanded, children }) => {

看起来很现代,但是这个方法是未命名的。
如果你的Babel配置正确,未命名的方法并不会是什么大问题。但是,如果Babel有问题的话,那么这个组件里的任何错误都显示为发生在 <>里的,这调试起来就非常麻烦了。
匿名方法也会引起Jest其他的问题。由于会引起各种难以理解的问题,而且也没有什么实际的好处。我们推荐使用function,少使用const。

装饰方法组件

由于方法组件没法使用装饰器,只能把它作为参数传入别的方法里。

import React from 'react'
import { observer } from 'mobx-react'
import { func, bool } from 'prop-types'
import './styles/Form.css'//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860
ExpandableForm.propTypes = {onSubmit: func.isRequired,expanded: bool,onExpand: func.isRequired
}function ExpandableForm({ onExpand, expanded = false, children, onSubmit }) {const formStyle = expanded ? {height: 'auto'} : {height: 0}return (<form style={formStyle} onSubmit={onSubmit}>{children}<button onClick={onExpand}>Expand</button></form>//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860)
}
export default observer(ExpandableForm)

只能这样处理:export default observer(ExpandableForm)。
这就是组件的全部代码:

import React from 'react'
import { observer } from 'mobx-react'
import { func, bool } from 'prop-types'
// Separate local imports from dependencies
import './styles/Form.css'//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860
// Declare propTypes here, before the component (taking advantage of JS function hoisting)
// You want these to be as visible as possible
ExpandableForm.propTypes = {onSubmit: func.isRequired,expanded: bool,onExpand: func.isRequired
}// Destructure props like so, and use default arguments as a way of setting defaultProps
function ExpandableForm({ onExpand, expanded = false, children, onSubmit }) {const formStyle = expanded ? { height: 'auto' } : { height: 0 }return (<form style={formStyle} onSubmit={onSubmit}>{children}<button onClick={onExpand}>Expand</button></form>)
}// Wrap the component instead of decorating it
export default observer(ExpandableForm)

条件判断

某些情况下,你会做很多的条件判断:

<div id="lb-footer">{props.downloadMode && currentImage && !currentImage.video && currentImage.blogText? !currentImage.submitted && !currentImage.posted? <p>Please contact us for content usage</p>: currentImage && currentImage.selected? <button onClick={props.onSelectImage} className="btn btn-selected">Deselect</button>: currentImage && currentImage.submitted? <button className="btn btn-submitted" disabled>Submitted</button>: currentImage && currentImage.posted? <button className="btn btn-posted" disabled>Posted</button>: <button onClick={props.onSelectImage} className="btn btn-unselected">Select post</button>}//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860
</div>

这么多层的条件判断可不是什么好现象。
有第三方库JSX-Control Statements可以解决这个问题。但是与其增加一个依赖,还不如这样来解决:

<div id="lb-footer">{//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860(() => {if(downloadMode && !videoSrc) {if(isApproved && isPosted) {return <p>Right click image and select "Save Image As.." to download</p>} else {return <p>Please contact us for content usage</p>}}// ...})()}
</div>

使用大括号包起来的IIFE,然后把你的if表达式都放进去。返回你要返回的组件。

结语

感谢您的观看,如有不足之处,欢迎批评指正。

http://www.lbrq.cn/news/1248751.html

相关文章:

  • 免费网站建设ppt/重庆seo技术教程博客
  • 烟台市建委网站/开发网站用什么软件
  • 网站建设说明/西安官网seo公司
  • 网站制作推广/镇江seo公司
  • 缪斯国际设计公司官网/鸡西seo
  • 大气蓝色企业网站模板/企业做推广有用吗
  • 网站建设和编程/华为seo诊断及优化分析
  • 医疗网站优化怎么做/搜索引擎优化网页
  • 大连科技网站制作/爱链接
  • 传奇页游平台/枫林seo工具
  • 网站建设受众/semi final
  • 嘉兴企业网站建设/关键词搜索排名软件
  • 哪个网站可以做化学实验/网站建设公司业务
  • 网站建设zhuitiankeji/百度大数据
  • 网站空间和数据库空间/谷歌seo是什么
  • 网站设计首页框架图片/天天外链官网
  • 用vs2010做的网站的源码/优化推广关键词
  • 济南做企业网站公司/营销型公司网站建设
  • 做旅游网站/广告推广免费发布
  • 做淘客网站需要营业执照吗/百度免费推广怎么做
  • 网站制作方案在哪找/互联网舆情监控系统
  • wordpress怎么安装插件/杭州seo关键词优化公司
  • 网页制作基础教程内容/seo排名快速上升
  • 请简要描述如何进行网站设计规划/广东疫情防控措施
  • wordpress手动主题/如何获取网站的seo
  • 模板建站有什么优势/seo优化师是什么
  • 微信做自己网站/天津百度整站优化服务
  • 网站做文献格式/百度热度
  • 音乐网站制作策划书/seo成创网络
  • java做的网站的后缀是什么/搜索引擎营销的优缺点及案例
  • p5.js 从零开始创建 3D 模型,createModel入门指南
  • 企业高性能web服务器
  • 【LeetCode】前缀表相关算法
  • c++: 尾置返回类型(Trailing Return Type)
  • XML Expat Parser:深入解析与高效应用
  • 通信名词解释:I2C、USART、SPI、RS232、RS485、CAN、TCP/IP、SOCKET、modbus等