Bootstrap的Datepicker角度指令未显示

时间:2015-10-14 08:29:08

标签: angularjs twitter-bootstrap datepicker angular-ui-bootstrap

在我的Angular项目中,我试图将Angular指令用于bootstrap datepicker,但它没有显示出来。

我已链接到<script src="bower_components/angular-bootstrap/ui-bootstrap.js"></script>和 我的 index.html 和我的 app.js 中的<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>我将ui.bootstrap作为依赖项。

angular
    .module('myApp', ['ui.bootstrap'])

我有什么明显的遗失吗?

我正在尝试在ng-repeat中的ng-switch中使用uib-datepicker-popup,但我不明白为什么会导致任何问题:

<div class="form-group" ng-repeat="field in vm.fields">
    <label for="{{ field.propertyName }}">
        <h5><span translate="{{ field.translate }}"></span>
            <span class="form-control-required" ng-show="{{field.required}}">*</span>
        </h5>
    </label>
    <div ng-switch="field.type" ng-class="{ 'input-group': field.type === 'date' }">
        <select ng-switch-when="gender"
                name="{{ field.propertyName }}" id="{{ field.propertyName }}"
                ng-model="vm.model[field.propertyName]" class="form-control"
                ng-required="{{ field.required }}">
            <option value="m">Male</option>
            <option value="f">Female</option>
        </select>
        <textarea ng-switch-when="textarea"
                  name="{{ field.propertyName }}" id="{{ field.propertyName }}"
                  class="form-control" ng-model="vm.model[field.propertyName]"
                  ng-required="{{ field.required }}"></textarea>
        <input ng-switch-when="date"
               type="date" uib-datepicker-popup="dd/MM/yyyy" 
               show-weeks="false" is-open="vm.datePickerOpen"
               name="{{ field.propertyName }}" id="{{ field.propertyName }}"
               class="form-control pull-left" ng-model="vm.model[field.propertyName]"
               ng-required="{{ field.required }}">
        <span class="input-group-btn btn-" ng-if="field.type === 'date'">
            <button type="button" class="btn btn-primary" 
                    ng-click="vm.openDatePicker($event)">
                <i class="glyphicon glyphicon-calendar"></i>
            </button>
        </span>
        <input ng-switch-default=""
               type="{{ field.type }}" name="{{ field.propertyName }}" id="{{ field.propertyName }}"
               class="form-control pull-left" ng-model="vm.model[field.propertyName]"
               ng-required="{{ field.required }}">
    </div>
</div>

在我的控制器中:

vm.datePickerOpen = false;

vm.openDatePicker = function($event) {
    vm.datePickerOpen = true;
};

3 个答案:

答案 0 :(得分:16)

表示https://angular-ui.github.io/bootstrap/#/datepicker上的文档适用于较新版本。将uib-datepicker-popup更改为datepicker-popup即可。

此外,由于以下原因,我必须将<input type="date" datepicker-popup>更改为<input type="text" datepicker-popup>Is there any way to change input type="date" format?

现在正在运作。关于bootstrap的Angular指令的文档应该提到使用uib-datepicker的版本以及datepicker适用的位置。

答案 1 :(得分:2)

有类似的问题。 经过2个小时的挖掘和尝试,我能够使用

<input type=text" uib-datepicker-popup="dd/MM/yyyy" ng-model="user.birthday" />

仅将模型数据设为控制器中的Date对象

像这样

//after we fetch the model (user) data make the needed field a Date object
user.birthday = new Date(user.birthday);

答案 2 :(得分:0)

对于那些搜索,我有同样的问题,这解决了我的问题。添加了AngularMoment to my module和注入“时刻”:

$scope.object.moment = moment();
$scope.object.date = $scope.object.moment.toDate(); 

然后:

<datepicker ng-model="object.date"></datepicker>