将jquery插件转换为指令角度

时间:2015-02-20 13:31:02

标签: javascript jquery angularjs angularjs-directive datepicker

我试图将jQuery插件转换为指令。这是图书馆:Github

在文档中有一个选项:

$(document).ready(function() {
        $("#datepicker").datepicker();
        $("#datepickerbtn").click(function(event) {
            event.preventDefault();
            $("#datepicker").focus();
        })
    });

我创建的指令:

app.directive('dateP', function(){
    return{
        restrict:'A',
        require:'ngModel',
        link:function(scope, element, attr, ngModel){
            $(element).datepicker(scope.$eval(attr.dateP));
            console.log('hey');
            ngModel.$setViewValue(scope);
        }
    }
}); 

但它没有用,任何帮助都会很感激。

Plunker

我已经读过这个:https://amitgharat.wordpress.com/2013/02/03/an-approach-to-use-jquery-plugins-with-angularjs/

1 个答案:

答案 0 :(得分:6)

基本上你写了ng-mode而不是ng-model和指令你应该定义日期选择器选项而不是scope.$eval(attr.dateP)这是完全错误的。在datepicker内,您需要以json格式提供他们的选项,例如我们在{ format: 'dd/mm/yyyy' })

中提到的选项

<强> HTML

<input date-p id="datepicker1" class="input-small" type="text" ng-model="dt">

<强>指令

app.directive('dateP', function() {
  return {
    restrict: 'A',
    require: 'ngModel',
    link: function(scope, element, attr, ngModel) {
      element.datepicker({
        format: 'dd/mm/yyyy'
      });
    }
  }
});

<强>更新

对于按钮单击时显示datepicker,您需要在控制器中添加以下方法。

<强>控制器

$scope.showDatepicker =  function(){
  angular.element('#datepicker1btn').datepicker('show');
};

Working Plunkr

感谢。