KendoUI坑系列之Date-Time-Picker Angular不绑定时间字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KendoUI坑系列之Date-Time-Picker Angular不绑定时间字符串相关的知识,希望对你有一定的参考价值。
<input kendo-date-time-picker ng-model="str" k-ng-model="obj" style="width: 100%;" />
angular.module("KendoDemos", [ "kendo.directives" ]) .controller("MyCtrl", function($scope){ $scope.str="2016-06-02 01:00:00";//若果 $scope.str=6/2/2016 1:00:00 AM 则无法绑定到控件 , 坑 $scope.getType = function(x) { return typeof x; }; $scope.isDate = function(x) { return x instanceof Date; }; })
以上是关于KendoUI坑系列之Date-Time-Picker Angular不绑定时间字符串的主要内容,如果未能解决你的问题,请参考以下文章