在 Oracle Jet 中实现 moment.js 时遇到问题
Trouble implementing moment.js in Oracle Jet
我正在使用 Oracle Jet in typescript 制作一个应用程序。
我想使用 moment.js 库,但我无法实现它。
为了安装它,我做了 npm install moment --save
在我的 .ts 文件中,我这样包含它:import * as moment from 'moment';
但是当我尝试使用它时,它不断发送此错误:error image
有谁知道如何以好的方式实现它?提前致谢
所以最后我找到了正确的做法(至少对我有用)
我刚刚添加了这个:
"moment": {
"cdn": "3rdparty",
"cwd": "node_modules/moment",
"debug": {
"src": "moment.js",
"path": "moment.js",
"cdnPath": "moment.js"
},
"release": {
"src": "moment.js",
"path": "moment.js",
"cdnPath": "moment.js"
}
},
在 src/js/path_mapping.json
我正在使用 Oracle Jet in typescript 制作一个应用程序。
我想使用 moment.js 库,但我无法实现它。
为了安装它,我做了 npm install moment --save
在我的 .ts 文件中,我这样包含它:import * as moment from 'moment';
但是当我尝试使用它时,它不断发送此错误:error image
有谁知道如何以好的方式实现它?提前致谢
所以最后我找到了正确的做法(至少对我有用)
我刚刚添加了这个:
"moment": {
"cdn": "3rdparty",
"cwd": "node_modules/moment",
"debug": {
"src": "moment.js",
"path": "moment.js",
"cdnPath": "moment.js"
},
"release": {
"src": "moment.js",
"path": "moment.js",
"cdnPath": "moment.js"
}
},
在 src/js/path_mapping.json