3

我正在使用带有角度js的引导日期选择器...

https://gist.github.com/rsvalerio/5606688

https://gist.github.com/danbarua/5356062

根据它..如果我需要将选项传递给日期选择器,它应该是:

<input type="text" b-datepicker="{format: 'dd-mm-yyyy'}" ng-model="dateObject" >

但这不起作用。我无法修复代码,请帮助

4

2 回答 2

10

使用DatepickerwithAngularStrap而不是,AngularUI因为它是更新的:http: //mgcrea.github.io/angular-strap/1.0/#/datepicker(到目前为止仅引导 2)

于 2013-07-25T07:22:09.260 回答
5

您提供的要点网址是分叉。所以我决定检查原始来源是什么。第一个要点说:

基于来自彼得培根达尔文(jqUi)的样本 https://github.com/petebacondarwin/angular-ui/tree/angular-v1.0/modules/directives/date

如果你点击那里,网址就消失了。但是https://github.com/petebacondarwin/angular-ui/仍然存在并且只是 angular-ui 的一个分支。如果你检查 angular-ui,你会发现:

https://github.com/angular-ui/angular-ui/tree/master/modules/directives/date

这似乎是旧代码演变的结果。

在这里你可以看到它的动作: http ://angular-ui.github.io/ui-date/

结论:只需使用ui-date,而不是旧的分叉 gist 代码。

于 2013-07-25T06:11:32.203 回答