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.
在 SharePoint 中,
使用事件接收器,我们如何知道用户何时批准了文档库中的文档?
我认为应该在 ItemAdded 或 ItemAdding 事件中捕获它。
有任何想法吗?
谢谢。
ItemUpdated 是要使用的事件接收器,除非您想“覆盖”批准(并且可能保持项目未批准) - 在这种情况下,您应该使用 ItemUpdating。
要检查该项目是否被批准,您可以尝试以下代码:
public override void ItemUpdated(SPItemEventProperties properties) { if (properties.ListItem["Approval Status"] == "Approved") //Do Something }
希望能帮助到你