gpt4 book ai didi

dart - 您如何在Rikulo Stream Server中取消缓存主页?

转载 作者:行者123 更新时间:2023-12-03 04:07:38 25 4
gpt4 key购买 nike

您能告诉我如何在Rikulo Stream中取消缓存默认主页吗?主页是指没有子路径(/ xxx)的主域(xxx.xxx.com),甚至不包含'/'。 urimapping设置不允许我为不以'/','。','['或'('和(。*)开头的路径设置过滤器,但不适用于我(仍将默认首页设置为max-age = 2592000)。

最佳答案

它是静态页面(例如index.html)还是RSP页面?

如果是RSP,则可以指定所需的 header 。例如,

[:header
Cache-Control="no-cache, must-revalidate, no-store, private, max-stale=0, max-age=0, post-check=0, pre-check=0"
Expires="0" Pragma="no-cache"]

如果它是静态的,则没有直接的方法来覆盖max-age,ETAG和相关的 header 。但是,有几种选择。首先,您可以实现自己的 resource loader)。

其次,您实现一个处理程序来设置标题并包含实际页面。假设您将HTML文件映射到/ s下:
uriMapping: {
r"/s/.*\.html": (HttpConnect connect) {
connect.response.headers..contentType = "text/html"
..add("Cache-Control", "no-cache"); //also other headers
return connect.include(connect.request.uri.path.substring(2));
}
  • 如果包含页面,则不会更新页眉。

  • 当然,您可以在RSP中实现HTML文件。然后,您获得了全部控制权。另外,您可以使用 the script tag轻松生成正确的链接(包括简单的版本控制)。

    关于dart - 您如何在Rikulo Stream Server中取消缓存主页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20181923/

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