gpt4 book ai didi

angularjs - 如何在 Angular View 中获取完整的 momentjs api?

转载 作者:行者123 更新时间:2023-12-03 08:32:58 25 4
gpt4 key购买 nike

获得moment() 的首选方法是什么?使用 Angular 时 View 内的对象?

看起来有这个项目,但看起来维护得不好。

https://github.com/gdi2290/angular-momentjs

最佳答案

还有一个比较流行的 Angular 矩项目... https://github.com/urish/angular-moment

有了它,你可以注入(inject)这样的时刻......

app.controller("ctrl", function($scope, moment) {
$scope.date = new moment();
});

Fiddle

或者,如果您不需要 angular-moment 提供的附加功能和指令,您可以使用 angular.value() 使 momentjs 在您的应用程序中可注入(inject)。或 angular.constant() ( Angular 力矩在内部使用 constant() 来执行此操作)...
app.constant("moment", moment);

app.controller("ctrl", function($scope, moment) {
$scope.date = new moment();
});

Fiddle

关于angularjs - 如何在 Angular View 中获取完整的 momentjs api?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23727411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com