我想在我的网络应用中使用present package。我的网络应用程序正在使用AngularJS。我在package.json文件中添加了以下内容:
"dependencies": {
"present":"0.0.6"
}
然后,在我的控制器文件中,我有以下内容:
$scope.myButton_Click = function() {
console.log('here 1');
var startTimestamp = present();
console.log(startTimestamp);
};
当上面的代码运行时,我看到以下错误:
here 1
present is not defined
我已经确认正在加载present.js。我不明白是什么原因引起的。
谢谢