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”,而不是时间戳。