我正在使用this plugin我的AngularJS应用和变量来存储开始和结束日期。
在日期范围更改时,如何调用控制器方法更新页面上的数据?
就像调用范围的这个方法一样:
$scope.updateDataOnDateRangeChange = function(){
// here calling few services to fetch new data for the page
// for the selected date range
}
如何为此插件使用ng-click或ng-change或custom指令?
答案 0 :(得分:1)
使用jQuery插件的基本过程通常是为它创建一个指令。在link
回调中,您初始化插件。在这里,您可以访问元素作为jQuery或jQ-lite对象,角度范围和插件回调。在第三方代码中更改范围时,请参阅有关$.apply()
的重要评论
示例html:
<input my-picker type="text"/>
基本脚本大纲:
app.directive('myPicker', function ($timeout) {
return {
link: function (scope, elem, attrs) {
$timeout(function () {
/* elem is a jQuery or jQ-lite object representing the element*/
elem.daterangepicker({
format: 'YYYY-MM-DD',
startDate: '2013-01-01',
endDate: '2013-12-31'
},
/* not overly familiar with this plugin but this callback
should allow you to set angular scopes */
function (start, end) {
/* important to do any scope changes within `$.apply()` so angular
becomes aware of changes from third party code*/
scope.$apply(function(){
/* do what you need here with angular scope
have access to plugin data as well as angular scope*/
})
});
}, 1)
}
}
})
您可以通过向标记添加其他属性,然后使用属性设置各种插件选项来增强此指令。
答案 1 :(得分:0)
AngularJS中存在ngChange directive,应该按照您的描述进行操作。
将此指令添加到日期范围输入元素中。