在create-react-app建立的專案下允許函式繫結運算子
前話
React的函式繫結一致是個問題,主要有下面幾種方式:
- 事件處理器動態繫結
export default class Com extends React.Component {
render() {
<input type="button" value="點我" onClick={this.method.bind(this)} />
}
}
- 建構函式繫結
export default class CartItem extends React.Component {
constructor(props) {
super(props);
this.method = this.method.bind(this);
}
render() {
<input type="button" value="點我" onClick={this.method} />
}
}
- 建構函式 + 箭頭函式
export default class CartItem extends React.Component {
constructor(props) {
super(props);
this.method = (ev) => {...}
}
render() {
<input type="button" value="點我" onClick={this.method} />
}
}
這個是babel支援的,還不是標準
export default class CartItem extends React.Component {
method = () => {...};
render() {
<input type="button" value="點我" onClick={this.method} />
}
}
- stage 0 的 transform-function-bind
export default class CartItem extends React.Component {
method(){...};
render() {
<input type="button" value="點我" onClick={::this.method} />
}
}
最後一種很帥氣, 然並軟,我使用就直接報錯。 臣不服,不服。
於是尋找方案, 因為是create-react-app建立的專案。
我的思考方案如下
- create-react-app內建支援的配置
在awesome-create-react-app中找到how-to-use-custom-babel-presets, 看到了光芒,光芒啊。
高興太早,死的也早,Adding support for custom babel configuration被拒絕了,大致是,想法非常好,非常好,就是不能。那麼,我走下一條路 - npm run eject
採用eject後,會多出很多檔案,並且是不可逆向的。
噁心,噁心,那麼多檔案。我要出去透透氣。 - react-app-rewired
這個比較簡單一些。
尋尋覓覓找到了injectbabelplugin
然後找到對應的外掛babel-preset-stage-0,babel-plugin-transform-function-bind
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;
}
}
修改完畢,啟動,哦,可以。 真是不錯。
扔掉鍵盤,甩開滑鼠,深深的一口水,想寫行程式碼咋這麼難。
React and ES6 – Part 3, Binding to methods of React class (ES7 included)
decorator
create-react-app
how-to-use-custom-babel-presets
Adding support for custom babel configuration #1357
react-app-rewired
injectbabelplugin
babel-preset-stage-0
babel-plugin-transform-function-bind
相關文章
- jquery繫結未來新建立函式的方法onjQuery函式
- 1:賦值運算子函式賦值函式
- JavaScript函式繫結JavaScript函式
- SQL語言運算子與函式SQL函式
- 過載運算子、解構函式函式
- Jni函式的靜態繫結函式
- new運算子作用域建構函式建立物件的過程簡單介紹函式物件
- create-react-app 建立專案有關less的若干問題ReactAPP
- create-react-app 建立專案有關 less 的若干問題ReactAPP
- Windows 10將允許您建立只有副檔名的檔案Windows
- Dart函式、類和運算子-處理資訊Dart函式
- ES6 - 函式與剩餘運算子函式
- PostgreSQL:數字——型別、運算子和函式SQL型別函式
- PostgreSQL:時間——型別、運算子和函式SQL型別函式
- PostgreSQL:陣列——型別、運算子和函式SQL陣列型別函式
- C# 清除事件繫結的函式C#事件函式
- python-算數運算子對應的函式Python函式
- python-邏輯運算子對應的函式Python函式
- ES6新特性總結之函式和擴充套件運算子...函式套件
- C++ 過載運算子和過載函式C++函式
- PostgreSQL:網路地址——型別、運算子和函式SQL型別函式
- javascript 函式中的 this 的四種繫結形式JavaScript函式
- Maven自定義繫結外掛目標:建立專案的原始碼jarMaven原始碼JAR
- 運算子與表示式
- [MySQL光速入門]010 運算子與函式MySql函式
- MySQL系列:資料型別、運算子及函式(5)MySql資料型別函式
- Rxjs debounce 運算子在 SAP Spartacus 函式節流中的一個實際使用例子JS函式
- GridView中使用三元運算子進行動態繫結View
- proc_create_data函式建立/proc/目錄下的檔案函式
- Laravel 路由的隱式繫結和顯式繫結Laravel路由
- 運算子 運算子
- python之為函式執行設定超時時間(允許函式執行的最大時間)Python函式
- test 檔案運算子
- 帶複製建構函式、賦值運算子的模板佇列函式賦值佇列
- 關於ES6的箭頭函式和展開運算子函式
- 劍指Offer--面試題1:賦值運算子函式面試題賦值函式
- MySQL的四種運算子(算術運算子、比較運算子、邏輯運算子和位運算子)MySql
- 函式計算支援 MySQL 例項繫結函式MySql