我正在开发一个示例实现的项目,在这个项目中,一些js文件从./../folder/file.js这样的路径获取,一些文件从'myfile'这样的文件夹中获取第二种方式,我们会得到这样的。 我对第二种方式感到困惑,任何人都澄清这一点。
答案 0 :(得分:0)
假设您有以下文件
app
/constants
StringConstants.js
/utils
StringHelper.js
StringConstants.js
export const DONE_BUTTON_LABEL='DONE';
export const CREATE_ALERT= 'Create Email Alert';
export const CREATE= 'CREATE';
export const CANCEL= 'Cancel';
StringHelper.js
class StringHelper {
...
}
export default new StringHelper();
如何导入?请参阅以下示例
import StringHelper '../utils/StringHelper';
import * as StringConstants from '../utils/StringConstants';
//You just imported all constants from StringConstants file. Use it as StringConstants.DONE_BUTTON_LABEL or StringConstants.CREATE
import {CREATE_ALERT} StringConstants from '../utils/StringConstants';
//import CREATE_ALERT constant from StringConstants file.