gpt4 book ai didi

javascript - ionic 输入日期默认设置为今天

转载 作者:行者123 更新时间:2023-11-27 23:36:23 26 4
gpt4 key购买 nike

我正在开发一个 Ionic 应用程序。我正在尝试在输入日期上设置默认日期(今天)。

如果输入类型是文本,我的代码就可以工作。但如果我定义日期类型,它就不起作用。

HTML 代码:

<html ng-app="ionicApp">

<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

<title>Date with Ionic</title>

<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">

<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>

</head>

<body ng-controller="GraphCtrl">

<ion-header-bar class="bar-positive">
<h1 class="title">Ionic Date</h1>
</ion-header-bar>

<ion-content>
Text : <input type="text" ng-model="date_rdv" />
Date : <input type="date" ng-model="date_rdv" />
</ion-content>

</body>
</html>

我的 JS 代码:

angular.module('ionicApp', ['ionic'])

.controller('GraphCtrl', function($scope, $filter) {
$scope.date_rdv = $filter('date')(Date.now(), 'yyyy-MM-dd');
});

你有什么想法吗?

Codepen.io link

解决方案(根据Elec的回答)

为了定义日期输入的默认值(不适用于文本输入),模型的定义必须如下:

$scope.date_rdv = new Date();

最佳答案

您应该使用new Date()来代替。您不需要过滤。

The model must always be a Date object, otherwise Angular will throw an error. Invalid Date objects (dates whose getTime() is NaN) will be rendered as an empty string.

AngularJs documentation for input[data]

关于javascript - ionic 输入日期默认设置为今天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34104982/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com