2

我想使用 C# 组件将特定主题标签添加到 Sharepoint 2013 应用程序上的列表项。我想模仿“标签和记事板”功能。

我在这里找到了如何在服务器上添加标签http://msdn.microsoft.com/en-us/library/ff770863.aspx,但是当我使用 Sharepoint Online 时,我需要使用客户端 API。

4

2 回答 2

1

昨天我确实偶然发现了这个,现在无法访问 devbox,但您应该开始查看 Microsoft.SharePoint.Client.Social

IE

context.Load(context.Web);
SocialFeedManager socialFeedManager = new SocialFeedManager(context);

如果您不击败我,我会在 devbox 再次上线时提供更多信息!:)

于 2013-03-28T22:02:09.650 回答
0

我终于找到了方法:

public void AsyncEvent(SPRemoteEventProperties properties) {

    ...

    List lst = clientContext.Web.Lists.GetByTitle(properties.ItemEventProperties.ListTitle);
    clientContext.Load(lst);
    clientContext.ExecuteQuery();
    ListItem item = lst.GetItemById(properties.ItemEventProperties.ListItemId);

    clientContext.Load(item.ParentList, l => l.Fields.Where(field => field.Title == "FieldName"));
    clientContext.ExecuteQuery();

    foreach(TaxonomyField field in item.ParentList.Fields) {
         TaxonomyFieldValueCollection newTopics = new TaxonomyFieldValueCollection(clientContext, String.Empty, field);
         newTopics.PopulateFromLabelGuidPairs("Term A Label|term-a-unique-id;Term B Label|term-b-unique-id");
         field.SetFieldValueByValueCollection(item, newTopics);
    }

    item.Update();
    clientContext.ExecuteQuery();

如果您找到更好的解决方案,请发布它,这个效果很好。

如果您想知道如何格式化“Term Label|term-unique-id”,请查看 Sharepoint Admin 页面下的 Taxonomy Term Store。术语的唯一 id 样本:d5e733d2-a904-4bee-afbd-632440fdc125。

于 2013-05-15T12:53:52.617 回答