我尝试在我的javascript应用程序中实现Babel,但是我遇到了特定语法的问题。
var li = $('<li/>').attr('role', 'presentation')
.appendTo(navTabs).addClass( function() {
if ($(this).is(':first-child')) {
return 'active';
}
});
var li = $('<li/>').attr('role', 'presentation')
.appendTo(navTabs).addClass( ()=> {
if ($(this).is(':first-child')) { // This is undefined
return 'active';
}
});
如何使用Babel arrow语法进行此操作?