0

我有一个用 drupal 创建的 Intranet 站点。我正在尝试显示共享中的 excel 文件。现在每次保存excel文件时,它都保存为.html文件并由基本页面显示是drupal。唯一的缺点是用户需要在从基本页面查看更新的内部 html excel 文件之前删除他们的浏览器历史记录。

我想如果他们是一个 excel 查看器,它会在没有任何用户控制的情况下自动导入并在 drupal 中显示 excel 文件(用户不应该打开 excel 文件)。

那么如何在用户不需要打开文件或清除浏览器的情况下以 ether .xls 共振峰或 .html 格式显示共享中的 excel 文件?

谢谢!

4

1 回答 1

0

The only down side is that the user needs to delete their browser history before they view the updated internal html excel file from a basic page.

Then what about setting the cache settings for that page to expire—and thus force that page to reload in the browser—more often than the rest of the site? Or heck, just don’t cache that specific page since this is an Intranet and it won’t get tons of traffic.

<meta http-equiv="Cache-control" content="no-cache">

More info here.

于 2013-11-07T21:08:01.110 回答