ref 属性使用eslint报错
Posted Flying bird
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ref 属性使用eslint报错相关的知识,希望对你有一定的参考价值。
react 使用 ref 报错 ,[eslint] Using string literals in ref attributes is deprecated. (react/no-string-refs)
报错1: var Hello = createReactClass({ componentDidMount: function() { var component = this.refs.test; }, render: function() { return <div ref="test">ref, test.</div>; } }); 正确: var Hello = createReactClass({ 2 componentDidMount: function() { 3 var component = this.test; 4 5 }, 6 render() { 7 return <div ref={(c) => { this.test = c; }}>test, ref.</div>; 8 } 9 });
以上是关于ref 属性使用eslint报错的主要内容,如果未能解决你的问题,请参考以下文章
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段