博客
关于我
在create-react-app创建的项目下允许函数绑定运算符
阅读量:408 次
发布时间:2019-03-06

本文共 1598 字,大约阅读时间需要 5 分钟。

前话

React的函数绑定一致是个问题,主要有下面几种方式:

  • 事件处理器动态绑定
export default class Com extends React.Component {    render() {            }}
  • 构造函数绑定
export default class CartItem extends React.Component {        constructor(props) {        super(props);        this.method = this.method.bind(this);    }    render() {          }}
  • 构造函数 + 箭头函数 | 箭头函数
export default class CartItem extends React.Component {    const method2 = () =>{...}        constructor(props) {        super(props);        this.method = (ev) => {...}    }    render() {           }}
  • 通过bael的

这个是babel支持的,还不是标准

export default class CartItem extends React.Component {          method = () => {...};    render() {           }}
  • stage 0 的
export default class CartItem extends React.Component {          method(){...};    render() {             }}

最后一种很帅气, 然并软,我使用就直接报错。 臣不服,不服。

于是寻找方案, 因为是create-react-app创建的项目。
我的思考方案如下

  • create-react-app内置支持的配置
    在awesome-create-react-app中找到, 看到了光芒,光芒啊。
    高兴太早,死的也早,被拒绝了,大致是,想法非常好,非常好,就是不能。那么,我走下一条路
  • npm run eject
    采用eject后,会多出很多文件,并且是不可逆向的。
    恶心,恶心,那么多文件。我要出去透透气。
  • react-app-rewired
    这个比较简单一些。
    寻寻觅觅找到了
    然后找到对应的插件,
const rewireMobX = require('react-app-rewire-mobx');const rewireEslint = require('react-app-rewire-eslint');const {injectBabelPlugin} = require('react-app-rewired');/* config-overrides.js */module.exports = {    webpack: function override(config, env) {        config = rewireEslint(config, env);        config = rewireMobX(config, env);        config = injectBabelPlugin('transform-function-bind',config)        config.output.publicPath = ''        return config;    }}

修改完毕,启动,哦,可以。 真是不错。

扔掉键盘,甩开鼠标,深深的一口水,想写行代码咋这么难。

转载地址:http://fdhkz.baihongyu.com/

你可能感兴趣的文章
Typescript 学习笔记六:接口
查看>>
02、MySQL—数据库基本操作
查看>>
OpenJDK1.8.0 源码解析————HashMap的实现(一)
查看>>
MySQL-时区导致的时间前后端不一致
查看>>
2021-04-05阅读小笔记:局部性原理
查看>>
go语言简单介绍,增强了解
查看>>
python file文件操作--内置对象open
查看>>
架构师入门:搭建基本的Eureka架构(从项目里抽取)
查看>>
MongoDB 快速扫盲贴
查看>>
one + two = 3
查看>>
sctf_2019_easy_heap
查看>>
PyQt5之音乐播放器
查看>>
Redis进阶实践之十八 使用管道模式提高Redis查询的速度
查看>>
SQL注入
查看>>
MPI Maelstrom POJ - 1502 ⭐⭐ 【Dijkstra裸题】
查看>>
Problem 330A - Cakeminator (思维)
查看>>
LeetCode75 颜色分类 (三路快排C++实现与应用)
查看>>
C语言+easyX图形库的推箱子实现
查看>>
调试vs2019代码的流程
查看>>
脱壳与加壳-加壳-6-代码实现加密导入表
查看>>