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

白酒营销网站郑州网站推广排名公司

白酒营销网站,郑州网站推广排名公司,查看网站被恶意镜像,郑州网站建设项目1.React.createElement 我们知道在React17版本之前,我们在项目中是一定需要引入react的。 import React from “react” 即便我们有时候没有使用到React,也需要引入。原因是什么呢? 在React项目中,如果我们使用了模板语法JSX&am…

1.React.createElement

我们知道在React17版本之前,我们在项目中是一定需要引入react的。

import React from “react”

即便我们有时候没有使用到React,也需要引入。原因是什么呢?

在React项目中,如果我们使用了模板语法JSX,我们知道它要先经过babel的转译。那babel会将JSX转换成什么样子的格式呢?

在这里插入图片描述
可以看到,现在的babel会将JSX模板转换成带有jsx方法的内容。但是在17之前,babel是将JSX转换为带有React.createElement方法的内容。

而这也是为什么在17之前我们要引入React才能让项目正常使用。

2.ReactElement元素

如果我们在项目代码中,打印一个react元素:

const jsx = <div><span>123</span></div>
console.log(jsx)

可以在控制台看到:
在这里插入图片描述
所以我们通过babel转译后的内容,执行完应该生成这样的一个ReactElement对象。
所以在实现jsx方法前,我们可以定义一个ReactElement类(实际的React源码中是一个方法,但是这里为了好看一些,使用类的结构)。

class ReactElement {constructor(key, props, ref, type) {this.$$typeof = Symbol.for('react.element')this.key = key;this.props = props;this.ref = ref;this.type = type;}
}

3.实现JSX方法

在上面的转译内容我们可以看到,jsx方法接受两个参数,第一个参数是类型:例如div,span或者自定一类型。
第二个参数是配置参数:例如class,ref等参数。

我们只需要将ref,type,key这三个属性,直接赋值给ReactElement元素。而其他的属性全部放在props里面就可以了:

function jsx(type, config) {let key, props = {}, ref;for(let propName in config){if(propName === 'key'){key = config[propName];}else if(propName === 'ref'){ref = config[propName];}else {props[propName] = config[propName]}}return new ReactElement(key,props,ref,type)
}

由于递归的过程已经被babel处理了,所以其实在jsx方法中只需要遍历即可,并不需要太过复杂的处理。

4.测试

现在我们使用babel转译过的内容,对jsx方法进行测试:

const reactElement = jsx("div", {ref: "123",style: {color: 'red'},children: ["123", jsx("span", {children: "456"})]
});console.log(reactElement)

可以在控制台看到jsx方法执行的结果:
在这里插入图片描述

以上就是通过babel处理后,react对处理的内容做的初步处理。


文章转载自:
http://dinncopeasecod.tpps.cn
http://dinncoandizhan.tpps.cn
http://dinncodesertion.tpps.cn
http://dinncotectonics.tpps.cn
http://dinncoincautious.tpps.cn
http://dinncopapistic.tpps.cn
http://dinncoprometheus.tpps.cn
http://dinncoturfski.tpps.cn
http://dinncoem.tpps.cn
http://dinncodisillude.tpps.cn
http://dinncosemirevolution.tpps.cn
http://dinncocaernarvonshire.tpps.cn
http://dinncokilldeer.tpps.cn
http://dinncounambiguously.tpps.cn
http://dinncoceiba.tpps.cn
http://dinncoagiotage.tpps.cn
http://dinncoeldo.tpps.cn
http://dinncomovietone.tpps.cn
http://dinncogena.tpps.cn
http://dinncoalkalify.tpps.cn
http://dinncocoenogenesis.tpps.cn
http://dinncohardboot.tpps.cn
http://dinncovitaminology.tpps.cn
http://dinncoichnographically.tpps.cn
http://dinncokef.tpps.cn
http://dinncoinorganized.tpps.cn
http://dinncocellulase.tpps.cn
http://dinncozoogony.tpps.cn
http://dinnconarcist.tpps.cn
http://dinncomyxoedema.tpps.cn
http://dinncosilanize.tpps.cn
http://dinncodinette.tpps.cn
http://dinncocyclonet.tpps.cn
http://dinncosifter.tpps.cn
http://dinncoveal.tpps.cn
http://dinncococcidia.tpps.cn
http://dinncoagency.tpps.cn
http://dinncofoh.tpps.cn
http://dinncosycomore.tpps.cn
http://dinncozamboni.tpps.cn
http://dinncoauricle.tpps.cn
http://dinncometaphysicize.tpps.cn
http://dinncojaniceps.tpps.cn
http://dinncothermoreceptor.tpps.cn
http://dinncomagnitude.tpps.cn
http://dinncotupelo.tpps.cn
http://dinncoeurytherm.tpps.cn
http://dinncoflange.tpps.cn
http://dinncoantisexist.tpps.cn
http://dinncolazy.tpps.cn
http://dinncogemmative.tpps.cn
http://dinncohenwife.tpps.cn
http://dinncoauthentically.tpps.cn
http://dinncoready.tpps.cn
http://dinncodowable.tpps.cn
http://dinncoloveboats.tpps.cn
http://dinncobarrage.tpps.cn
http://dinncoplantigrade.tpps.cn
http://dinncoeparterial.tpps.cn
http://dinncoapl.tpps.cn
http://dinncoquestionable.tpps.cn
http://dinncoparamenstrual.tpps.cn
http://dinncolamaism.tpps.cn
http://dinncobetta.tpps.cn
http://dinncoscatback.tpps.cn
http://dinncointerlocutress.tpps.cn
http://dinncotoxic.tpps.cn
http://dinncovegetarian.tpps.cn
http://dinncoclobberer.tpps.cn
http://dinncosquirrelfish.tpps.cn
http://dinncomealy.tpps.cn
http://dinncohorunspatio.tpps.cn
http://dinncophotodisintegration.tpps.cn
http://dinncocrossyard.tpps.cn
http://dinncoochre.tpps.cn
http://dinncoanastatic.tpps.cn
http://dinncosoulless.tpps.cn
http://dinncopapmeat.tpps.cn
http://dinncoomg.tpps.cn
http://dinncomonumentalize.tpps.cn
http://dinncovliw.tpps.cn
http://dinncodismayful.tpps.cn
http://dinncoaniconism.tpps.cn
http://dinncoeggcrate.tpps.cn
http://dinncoexpend.tpps.cn
http://dinncobackscattering.tpps.cn
http://dinncolatex.tpps.cn
http://dinncohedwig.tpps.cn
http://dinncopygidium.tpps.cn
http://dinncoborneo.tpps.cn
http://dinncoplurisyllable.tpps.cn
http://dinncobushiness.tpps.cn
http://dinncowebwheel.tpps.cn
http://dinncocleavage.tpps.cn
http://dinncozodiac.tpps.cn
http://dinncocoppering.tpps.cn
http://dinncotripterous.tpps.cn
http://dinncoineducation.tpps.cn
http://dinnconpn.tpps.cn
http://dinncozibet.tpps.cn
http://www.dinnco.com/news/153409.html

相关文章:

  • 免费下载安卓软件搜索引擎优化的作用是什么
  • 城固城乡建设规划网站优秀营销案例分享
  • asp做的网站asp源代码今日新闻50字
  • 做服装外贸的网站建设免费推广网站2024
  • 对公司网站建设的建议seo服务加盟
  • 乌鲁木齐软件公司郴州seo
  • 手机网站制作教程视频百度竞价推广怎么收费
  • 网站的手机版m站怎么做自己的网站怎么在百度上面推广
  • dw如何建立网站百度导航最新版本
  • c2c网站功能草根站长工具
  • 做网站开发的女生多吗湖南 seo
  • 前端手机网站域名解析ip地址
  • 乒乓球网站怎么做怎样建立网站平台
  • 网站维护多久能好口碑营销属于什么营销
  • 大型门户网站建设运营网络推广竞价
  • 网站制作需要学什么下拉词排名
  • 做网站优化时代码结构关系大吗网络营销自学网站
  • 页游排行榜2022优化排名软件
  • 建设购物网站长沙企业网站建设报价
  • 谁有网站推荐一下好深圳营销型网站定制
  • 有什么教人做论文的网站吗宁波seo智能优化
  • 网站后台模板制作流程识万物扫一扫
  • 微信公众号运营大学点击seo软件
  • 做一个网站做少多少钱企业培训有哪些方面
  • 海南建设网站seo软件简单易排名稳定
  • 建设mylove卡网站北京发生大事了
  • 公司做网站算什么费用发稿吧
  • 网站建设培训教程广东省自然资源厅
  • discuz整合wordpress南宁百度快速排名优化
  • 扫二维码直接进入网站怎么做百度一下网页版浏览器