gpt4 book ai didi

ajax - 在我的 ASP.NET MVC 应用程序中将 JSON 数据检索到 jqGrid 时,我应该使用 POST 还是 GET?

转载 作者:行者123 更新时间:2023-12-02 07:06:35 24 4
gpt4 key购买 nike

我正在使用 jqgrid在我的 ASP.NET MVC 应用程序中。目前我有 mTYpe: 'POST' 这样的:

jQuery("#myGrid").jqGrid({
mtype: 'POST',
toppager: true,
footerrow: haveFooter,
userDataOnFooter: haveFooter,

但我正在阅读this article ,我看到了这一段:

Browsers can cache images, JavaScript, CSS files on a user's hard drive, and it can also cache XML HTTP calls if the call is a HTTP GET. The cache is based on the URL. If it's the same URL, and it's cached on the computer, then the response is loaded from the cache, not from the server when it is requested again. Basically, the browser can cache any HTTP GET call and return cached data based on the URL. If you make an XML HTTP call as HTTP GET and the server returns some special header which informs the browser to cache the response, on future calls, the response will be immediately returned from the cache and thus saves the delay of network roundtrip and download time.

鉴于这种情况,我是否应该将我的 jqGrid mType 全部切换为对 mType 使用“POST”中的“GET”? (它说的是 XML(没有提到 JSON)。如果答案是肯定的,那么实际上我会想对 jqGrid mType 使用 POST 的情况是什么,因为它似乎在没有这种缓存优势的情况下做同样的事情?

最佳答案

您描述的问题可能出现在 Internet Explorer 中,但如果您使用默认选项,它不会存在于 jqGrid 中

如果您查看将要使用的完整 URL,您会看到如下参数

nd=1339350870256

jQuery.ajaxcache: true同义. jqGrid 将当前时间戳添加到 URL 以使其唯一。

我个人喜欢在 jqGrid 中使用 HTTP GET,但我不喜欢使用 nd 参数。我在 the old answer 中描述的原因.最好使用 jqGrid 的 prmNames: {nd:null} 选项,它删除了 URL 中 nd 参数的使用。而不是那个可以控制服务器端的缓存。例如设置

Cache-Control: private, max-age=0

是我的标准设置。要设置 HTTP header ,您只需在 ASP.NET MVC 操作代码中包含以下行

HttpContext.Current.Response.Cache.SetMaxAge (new TimeSpan (0));

您可以在 the answer 中找到更多详细信息.

重要的是要理解, header Cache-Control: private, max-age=0 不会阻止数据缓存,但数据将永远不会在没有重新验证的情况下使用服务器。使用其他 HTTP header 选项 ETag您可以使重新验证真正起作用。主要思想是,ETag 的值将始终随着更改服务器上的数据而更改。如果之前的数据已经在网络浏览器缓存中,网络浏览器自动发送 If-None-Match 部分在 HTTP 请求中,值为 缓存数据中的 ETag。因此,如果服务器发现数据未更改,它可以使用具有 304 Not Modified 状态和 HTTP 响应的 empty body 的 HTTP 响应进行响应。它允许网络浏览器使用本地以前缓存的数据。

the answerthis one您将找到如何使用 ETag 方法的代码示例。

关于ajax - 在我的 ASP.NET MVC 应用程序中将 JSON 数据检索到 jqGrid 时,我应该使用 POST 还是 GET?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10969974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com