Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
新应用程序制造商(并准备坠入爱河)
我希望每个新行都有一个字段,其中包含创建该行的日期+时间。我怎样才能做到这一点?
如果您想将答案基于现有代码,请基于项目列表示例
谢谢!
向数据模型(例如项目)添加一个名为 DateCreated 的新字段,类型为 Date。
如果onCreate是数据模型(“项目”),请添加以下行:
onCreate
record.DateCreated = new Date();
要检查您的工作,请通过复制 DueDate 字段并将数据绑定名称更改为 DateCreated 来将 DateCreated 字段添加到主页。