博客
关于我
在create-react-app创建的项目下允许函数绑定运算符
阅读量:415 次
发布时间: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/

你可能感兴趣的文章
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>
Mysql8.0的特性
查看>>
MySQL8修改密码报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
查看>>
MySQL8修改密码的方法
查看>>
Mysql8在Centos上安装后忘记root密码如何重新设置
查看>>
Mysql8在Windows上离线安装时忘记root密码
查看>>
MySQL8找不到my.ini配置文件以及报sql_mode=only_full_group_by解决方案
查看>>
mysql8的安装与卸载
查看>>
MySQL8,体验不一样的安装方式!
查看>>
MySQL: Host '127.0.0.1' is not allowed to connect to this MySQL server
查看>>
Mysql: 对换(替换)两条记录的同一个字段值
查看>>
mysql:Can‘t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock‘解决方法
查看>>
MYSQL:基础——3N范式的表结构设计
查看>>
MYSQL:基础——触发器
查看>>