设置 SharePoint 列表元数据

发布于 2024-07-29 21:37:10 字数 224 浏览 6 评论 0原文

元数据似乎经常用于描述 SharePoint 列表的结构。 该结构允许在列表item级别存储数据。

如何在不依赖附加列的情况下指定有关列表本身的信息?

理想情况下,我想要类似 SPList.Properties ["Mykey"] = "MyValue"

PropertiesXml 的东西不可设置,但有什么方法可以更改它返回的数据吗?

Metadata seems to be used frequently to describe a SharePoint list's structure. That structure allows the storage of data at the list item level.

How can I specify information about the list itself without relying on an additional column?

Ideally I want something like SPList.Properties ["Mykey"] = "MyValue"

PropertiesXml isn't settable but is there any way to alter the data it returns?

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

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

发布评论

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

评论(2

南风起 2024-08-05 21:37:10

SPList 对象本身没有属性包,但是您可以使用 SPList.RootFolder。 其 SPFolder 对象具有 Properties 属性。

There is no property bag on the SPList object itself, however you can use the one on SPList.RootFolder. Its SPFolder object has a Properties property.

酒与心事 2024-08-05 21:37:10

作为 Alex 直接回答的替代方案,您可以将列表中的元数据存储在单独的专用(可能是隐藏的)列表中。

As an alternative to Alex' direct answer, you could store the metadata on your lists in a separate dedicated, possibly hidden, list.

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