我正在使用Angular js开展MVC 5项目。我正在使用日期选择器控件。
在directive
中使用app.js
的网页中。
myApp.directive('datepicker', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, element, attrs, ProfileCtrl) {
element.datepicker({
//dateFormat: 'DD, d MM, yy',
dateFormat: 'dd-MM-yyyy',
autoclose: true,
onSelect: function (date) {
ProfileCtrl.$setViewValue(date);
//ProfileCtrl.$render();
scope.$apply();
}
});
}
};
});
一切正常,但选择日期时出现问题。它显示日期选择器中的选定日期。例如,所选日期为2015年6月1日
我将此值保存在数据库中。我再次填充日期选择器,但未在日期选择器中选择所选日期。
我的系统日期格式为dd-MM-yyyy
。
修改:
请参阅下面的 html代码。
<div ng-app="myApp" ng-controller="ProfileCtrl">
.........
<div class="form-group">
<label for="dob" class="col-md-2 control-label">DOB</label>
<div class="col-md-10">
<input type="text" datepicker name="dob" class="form-control" ng-model="models.DOB" />
</div>
</div>
角度控制器代码
$http.get("Profile/GetProfile").success(function (data) {
$scope.models = {
Name: data.Name,
UserEmail: data.UserEmail,
Password: data.Password,
ConfirmPassword: data.ConfirmPassword,
DOB: data.DOB,
Address: data.Address,
City: data.City,
Country: data.Country,
Pincode: data.Pincode,
Phone: data.Phone
}
});
C#controller
public ActionResult GetProfile()
{
string _CustomerId = CookieHelper.GetCookieValue(CookieHelper.EndUser.UserId);
long CustomerId = 0;
if (!Int64.TryParse(_CustomerId, out CustomerId))
return Json(null, JsonRequestBehavior.AllowGet);
Customer customer = CustomerHelper.GetCustomer(CustomerId);
if (customer == null)
return Json(null, JsonRequestBehavior.AllowGet);
var data = new
{
Id = customer.Id,
Name = customer.Name,
UserEmail = customer.Email,
Password = customer.Password,
ConfirmPassword = customer.Password,
DOB = (customer.DOB != new DateTime?()) ? ((DateTime)customer.DOB).ToString("MM/dd/yyyy", System.Globalization.CultureInfo.CurrentCulture) : string.Empty,
Address = customer.Address,
City = customer.City,
Country = customer.Country,
Pincode = customer.Pincode,
Phone = customer.Phone
};
return Json(data, JsonRequestBehavior.AllowGet);
}
如果DOB字段包含日期值,则日期选择器不显示蓝色的日期,日期格式在页面加载和日期更改事件中不同。