Sharepoint If-Modified-Since

发布于 2024-11-06 15:15:40 字数 741 浏览 1 评论 0 原文

我编写了一个在 SharePoint 中使用的处理程序,它将根据查询字符串中的给定参数生成 JSON 字符串。然后,JS 函数将使用此 JSON 字符串向客户端显示 HTML 中的相关数据,但是,该调用成本较高,并且希望将输出缓存一次。

该处理程序目前满足与 OUTPUT 缓存有关的所有内容,并在应用程序中进行了测试,取得了成果,但是,令我感到困惑的是,特别是在 SharePoint (2007) 中,“If-Modified-Since”标头属性从未出现,基本上总是出现返回为 null

我发现博客上的博客详细讨论了有关图像的问题,并包含文件,但我找不到有关页面(ASPX、AXD、ASHX)和处理程序自身的任何具体内容。

我在这里唯一的假设是我使用的是 AXD 文件,默认情况下 OUTPUT 缓存不直接支持该文件?

代码看起来像:

bool isModifiedSinceLast = (context.Request.Headers.Get("If-Modified-Since") != null)
     : true
     ? false;

if (!isModifiedSinceLast)
{
    context.Response.Headers.AppendHeader("If-Modified-Since", Guid.NewGuid());
}
else
{
    // complete the call from cache
}

谢谢,

埃里克

I wrote a handler to be used within SharePoint that will generate a JSON string from a given parameter in the query-string. This JSON string will then be used by a JS function to display the relevant data in HTML to the client, however, the call is somewhat costly and would like to cache the output once.

The handler currently caters for everything regarding OUTPUT cache and tested within an application bares fruits, however, I'm baffled by the fact that, specifically in SharePoint (2007) the "If-Modified-Since" header attribute never appears, basically it always comes back as null.

I found blog-on-blog that discuss this in length in regards to images, and include files but I can't find anything specific regarding this with pages (ASPX, AXD, ASHX) and the handler self.

My only assumption here is the fact that I'm using an AXD file, which is not directly supported by OUTPUT cache by default?

The code looks something like:

bool isModifiedSinceLast = (context.Request.Headers.Get("If-Modified-Since") != null)
     : true
     ? false;

if (!isModifiedSinceLast)
{
    context.Response.Headers.AppendHeader("If-Modified-Since", Guid.NewGuid());
}
else
{
    // complete the call from cache
}

Thanks,

Eric

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文