這次帶給大家React.js的Mixins.js使用詳解,使用React.js的Mixins.js的注意事項有哪些,下面就是實戰案例,一起來看一下。
先npm導入react-mixin
npm install --save react-mixin@2
定義一個mixins.js檔案
const MixinLog = { //他和普通组件一样,也是有生命周期的 componentWillMount() { console.log('MixinLog--componentWillMount'); }, // 定一个公共方法 log() { console.log('abcdefg.......'); } }export default MixinLog
在使用的地方,先導入react-mixin和自己定義的mixins
import ReactMixin from 'react-mixin';import MixinLog from './mixins';
和設定屬性類型一樣
ReactMixin(组件名字.prototype, MixinLog);
在要使用的地方調用:調用log()方法
MixinLog.log();
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是React.js的Mixins.js使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!