我正在尝试将Google's Material Design Lite与ReactJS一起使用。我正在使用Spinner Loading& Text Field MDL库的组件。
但是,当我使用React Router切换路线时,动画不会发生。当我刷新页面时,它工作正常。我想,这可能是因为MDL组件没有升级。然后,我尝试使用componentHandler.upgradeDom()
,但是控制台会抛出错误app.js:27160 Uncaught TypeError: Cannot read property 'upgradeDom' of undefined
。
这是代码,
var React = require('react');
var ReactDOM = require('react-dom');
var PropTypes = React.PropTypes;
var MDLite = require('material-design-lite');
var componentHandler = MDLite.componentHandler;
var styles = {
loader: {
marginTop: '70px',
}
}
var Loading = React.createClass({
render: function() {
return (
<div className="mdl-spinner mdl-js-spinner is-active" style={styles.loader}></div>
);
},
componentDidMount: function() {
componentHandler.upgradeDom();
},
});
module.exports = Loading;
我还尝试在控制台中使用console.log(MDLite)
记录 MDLite 变量。但是,它显示了一个空对象{} 。我正在使用 webpack &amp;安装了Material Design Lite,其中包含 NPM ,npm install material-design-lite --save
。
我的问题是如何正确导入/要求MDL&amp;使用componentHandler.upgradeDom()
?
答案 0 :(得分:7)
我自己想出了解决方案。有两种方法可以实现这一目标。
懒惰的方式
在node_modules/material-design-lite/material.js
中,编辑&amp;最后添加以下代码,如下所述。
// You can also export just componentHandler if (typeof module === 'object') { module.exports = window; }
您的 material.js 文件将如下所示。
;(function() {
.
.
.
componentHandler.register({
constructor: MaterialRipple,
classAsString: 'MaterialRipple',
cssClass: 'mdl-js-ripple-effect',
widget: false
});
// You can also export just componentHandler
if (typeof module === 'object') {
module.exports = window;
}
}());
在您的React Component文件中,require
就像这样,
var MDLite = require('material-design-lite/material');
var componentHandler = MDLite.componentHandler;
然后,您可以调用componentHandler.upgradeDom()
来升级MDL元素。
请注意,如果您只想导入module.exports = componentHandler;
,也可以写componentHandler
。
Webpack Way
就个人而言,我更喜欢webpack方式,因为它更清洁&amp;你不需要自己编辑模块文件。
安装 exports-loader ,npm install exports-loader --save-dev
。然后,在 webpack.config.js 中,将加载项指定为
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'exports-loader!babel-loader'
}
]
在您的React Component文件中,您可以require
componentHandler as
var componentHandler = require('exports?componentHandler!material-design-lite/material');
我希望它有所帮助!