本文共 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() { }}
这个是babel支持的,还不是标准
export default class CartItem extends React.Component { method = () => {...}; render() { }}
export default class CartItem extends React.Component { method(){...}; render() { }}
最后一种很帅气, 然并软,我使用就直接报错。 臣不服,不服。
于是寻找方案, 因为是create-react-app创建的项目。我的思考方案如下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/