我的密码
componentDidMount() {
// we add a hidden class to the card and after 700 ms we delete it and the transition appears
this.timeOutFunction = setTimeout(
function () {
this.setState({cardAnimaton: ""});
}.bind(this),
700
);
}
componentWillUnmount() {
clearTimeout(this.timeOutFunction);
this.timeOutFunction = null;
}
componentWillMount() {
if (this.state.logged_in) {
this.props.history.push("/dashboard");
}
}
Run Code Online (Sandbox Code Playgroud)
我打开了以下内容 .eslintrc
{
"parser": "babel-eslint",
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"no-set-state": "off",
"react/no-multi-comp": [1, { "ignoreStateless": true }]
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"globals": {
"localStorage": true,
"fetch": true
},
"settings": {
"react": {
"pragma": "React",
"version": "16.4.1"
}
}
}
Run Code Online (Sandbox Code Playgroud)
我收到以下警告
setTimeout is not defined (no-undef)
clearTimeout is not defined (no-undef)
Run Code Online (Sandbox Code Playgroud)
如何解决此警告?
问题是你的环境中.eslintrc
没有配置。
每个环境都会带来一组特定的预定义全局变量。
您可以为浏览器 [您的React / Redux / JavaScript代码]和节点 [Webpack并构建相关代码] 配置它。
"env": {
"browser": true,
"node": true
},
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
913 次 |
最近记录: |