如何知道空列表的字段名称?

发布于 2024-11-12 05:43:58 字数 422 浏览 3 评论 0原文

在 Sharepoint 中有一个 SPList,我应该检查字段名称是否存在。 (如果存在,我添加内容,如果不存在,我做其他事情)

现在我正在这样做:

SPListItemCollection listItems = spList.GetItems();
SPFieldCollection spFieldCollection =listItems.Fields;
foreach (SPField field in spFieldCollection)
 {
     String name = field.Title;

     if (name == "nameField") {
         return true; // Exist
     }
 }

工作正常,除非列表为空。在将内容添加到列表之前如何检查字段名称是否存在?

In a Sharepoint there is a SPList that I should check if a name of field exist. (If exist I add content, if not exist I do something else)

Now I'm doing that:

SPListItemCollection listItems = spList.GetItems();
SPFieldCollection spFieldCollection =listItems.Fields;
foreach (SPField field in spFieldCollection)
 {
     String name = field.Title;

     if (name == "nameField") {
         return true; // Exist
     }
 }

that works ok, except if the list is empty. How can I check if a name of the field exist before add content to the list?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心不设防 2024-11-19 05:43:58

只需检查 SPList 上的 Fields 属性即可:

SPFieldCollection fields = spList.Fields;

使用方法 ContainsField 检查字段是否存在:

return spList.Fields.ContainsField(fieldName);

字段名称
类型:System.String 字符串
包含显示名称
或字段的内部名称。

SPFieldCollection.ContainsField 方法

Just check on the Fields property on the SPList:

SPFieldCollection fields = spList.Fields;

Use the method ContainsField to check if a field exists:

return spList.Fields.ContainsField(fieldName);

fieldName
Type: System.String A string
that contains either the display name
or the internal name of the field.

SPFieldCollection.ContainsField Method

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文