你好汇总专家
我有一个单一的React组件和一个使用相同导入的商店
//文件:ProfileStore.js
import ProfilesActions from './ProfilesActions.js'
....
--
//文件:Component.js
import ProfilesStore from '../flux/ProfilesStore'
....
render: function() {
....
ProfilesActions.doSomething();
....
}
我的输出结果很奇怪:
var ProfilesActions$1 = .....//The ProfileActions implementation
var ProfilesStore = ....
ProfilesActions$1.doSomething
var Component = ....
ProfilesActions.getMoreProfiles();
我怎样才能告诉rollup.js使用不带后缀
ProfilesActions
的$1
的单个实例非常感谢你
最佳答案
我知道我必须在所有使用ProfilesActions
的地方调用import。
所以这意味着也要导入Component.js
感谢@Clavin和@Akansh Gulati的帮助。