【发布时间】:2016-10-18 10:05:18
【问题描述】:
在我的 Ionic 应用程序中,我将常量定义为
//constants.ts
export var CONSTANTS = {
API_ENDPOINT: 'http://localhost:3000/'
};
并将其导入为
import {CONSTANTS} from '../../services/constants'; //the path is correct
但是我得到错误 CONSTANTS not defined in the file where I importing.. 我在这里缺少什么?
【问题讨论】:
标签: typescript ionic-framework