迭代 SPWebCollection 时 SPWeb.Fields 为空

发布于 2024-11-09 14:00:07 字数 710 浏览 2 评论 0原文

我正在编写一个命令行应用程序来检查 SPWeb.Fields 属性返回的 SPFieldCollection,但它的行为并不符合我的要求。我有数百个 SPWeb,它肯定会影响所有这些,但对于除初始 SPWeb 之外的所有 SPWeb,它都会返回一个空的 Fields 属性。我做错了什么?

string siteUrl = "http://webroot/sitecoll";
using (SPSite siteCol = new SPSite(siteUrl))
{
    using(SPWeb outerWeb = siteCol.OpenWeb())
    {
        foreach (SPWeb innerWeb in siteCol.AllWebs)
        {
             LogMessageToFile(String.Format("Checking {0}", innerWeb.Url));  //executed for each of the hundreds of innerWebs
             if (innerWeb.Fields.ContainsField("Year"))
             {
                  // Never accessed after the first time through because innerWeb.Fields is empty
             }
        }
    }
}

I'm writing a command line application that checks the SPFieldCollection returned by the SPWeb.Fields property, but it's not behaving as I'd like. I have hundreds of SPWebs and it's definitely touching them all, but for all but the initial SPWeb, it's returning an empty Fields property. What am I doing wrong?

string siteUrl = "http://webroot/sitecoll";
using (SPSite siteCol = new SPSite(siteUrl))
{
    using(SPWeb outerWeb = siteCol.OpenWeb())
    {
        foreach (SPWeb innerWeb in siteCol.AllWebs)
        {
             LogMessageToFile(String.Format("Checking {0}", innerWeb.Url));  //executed for each of the hundreds of innerWebs
             if (innerWeb.Fields.ContainsField("Year"))
             {
                  // Never accessed after the first time through because innerWeb.Fields is empty
             }
        }
    }
}

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

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

发布评论

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

评论(1

嘿哥们儿 2024-11-16 14:00:07

SPweb.Fields 位于网站集级别。

除非您专门在子网站级别创建字段,否则您将返回 0。

SPweb.Fields live at the site collection level.

Unless you specifically create the fields at the subsite levels you will get 0 returned.

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