小编Jim*_*tis的帖子

如何在Firestore中保存日期值

type="date" 在HTML中另存为字符串在Firestore中。

在html文件中。

<input #scheduledStartDate="ngModel" [(ngModel)]="reposition.scheduledStartDate"
name="scheduledStartDate" id="scheduledStartDate" class="input is-normal"
type="date" required placeholder="Leaving...">
Run Code Online (Sandbox Code Playgroud)

从接口.ts文件中

scheduledStartDate?: DateTimeFormat;
Run Code Online (Sandbox Code Playgroud)

也尝试过

scheduledStartDate?: Date;
Run Code Online (Sandbox Code Playgroud)

结果相同。

这两个选项都将输入的日期值作为字符串保存在Firestore中,例如“ 2018-01-02”,而不是时间戳。

angular google-cloud-firestore

4
推荐指数
1
解决办法
9457
查看次数

标签 统计

angular ×1

google-cloud-firestore ×1