我试图将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);
}
}
});
但它没有用,任何帮助都会很感激。
我已经读过这个:https://amitgharat.wordpress.com/2013/02/03/an-approach-to-use-jquery-plugins-with-angularjs/
答案 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');
};
感谢。