这意味着什么?我怎么看到它在文档中使用过,但是实际上在教程中我从未见过?

例:

AppRegistry.registerComponent('MyApp', () => SimpleList);

这只是一种新的说法:
function() { return SimpleList }:

即:
AppRegistry.registerComponent('MyApp', function() { return SimpleList });

最佳答案

是,你说得对。
() => SimpleList可以替代function() { return SimpleList }
不,你不是100%正确。this与箭头函数中的调用方相同,如果您使用function(){},则使用新的this(new context)代替

进一步了解此(http://es6-features.org/#Lexicalthis :)

08-19 08:06