最佳答案
我正在看一些 ES6代码,我不明白@符号放在变量前面是做什么的。我能找到的最接近私人领域的东西?
我刚才在看 还原库的代码:
import React, { Component } from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'redux/react';
import Counter from '../components/Counter';
import * as CounterActions from '../actions/CounterActions';
@connect(state => ({
counter: state.counter
}))
export default class CounterApp extends Component {
render() {
const { counter, dispatch } = this.props;
return (
<Counter counter={counter}
{...bindActionCreators(CounterActions, dispatch)} />
);
}
}
下面是我发现的一篇关于这个主题的博客文章: https://github.com/zenparsing/es-private-fields
在这篇博客文章中,所有的例子都在一个类的上下文中——当这个符号在一个模块中使用时,它意味着什么?