如何使网站离线可用

发布于 2024-10-15 09:20:45 字数 65 浏览 2 评论 0原文

我想让我的网站可以离线使用,即使用户清除了缓存和 cookie。有可能吗?我也在处理数据库。是否可以离线处理数据库?

I want to make my website available offline even if the user clears the cache and cookies. Is is possible? Also I am dealing with database. Is is possible to handle databases offline?

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

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

发布评论

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

评论(6

回忆那么伤 2024-10-22 09:20:46

不,如果您的数据库在线托管。那么您需要 PHP/ASP(无论您使用什么来处理数据库)的互联网连接来连接/通信到数据库

No, if your databases are housed online. then you need a internet connection for the PHP/ASP (whatever you're using to deal with DBs) to connect/communicate to the DB's

ζ澈沫 2024-10-22 09:20:46

要在本地存储数据并离线访问它们,请查看 Gears网络存储

主要问题是您希望为您的网站提供何种程度的功能。它总是需要在客户端(用户)端进行一些工作来“存储”又名。离线保存您的网站。您必须将所有功能存储在用户存储的一个页面中(无论是 Flash 电影还是某些 Javascript 代码)。

For storing data locally and accessing them offline take a look at Gears and Web Storage.

The main problem is what degree of functionality you want to provide with your website. It always requires some work on the client (user) side to "store" aka. save your website offline. You would have to store all your functionality in one page that the user stores (be it a Flash movie or some Javascript-Code).

七堇年 2024-10-22 09:20:46

您可以使用简单的命令在本地下载整个网站,所有链接都可以正常工作。

wget -rk 'http://www.website.com'

对于 https url,您需要再添加一项属性,如下所示:

wget -rk --no-check-certificate 'https://www.website.com'

You can use simple command to download whole website locally with all links working properly.

wget -rk 'http://www.website.com'

For https url you need to add one more property like below :

wget -rk --no-check-certificate 'https://www.website.com'
岁月静好 2024-10-22 09:20:45
  1. 用户可以使用 Chrome 存储单个网页的本地副本(右键单击“另存为”),它将存储所有资源(图像、CSS , js) 需要离线完全加载页面。其他浏览器也有类似的选项。

  2. 您可以使用wget镜像整个网站以供离线浏览。

    wget --mirror --convert-links --html-extension -p http://www.example.com/
    

    当然,这些选项都不会处理您的网站/页面的数据库驱动元素。

  3. 如果您想离线模拟数据库或页面的动态元素,那么 Google Gears 可能是最接近的到你正在寻找的东西,但我认为它去年被谷歌弃用了。

  1. A user could store a local copy of a single webpage using Chrome (right click save-as) and it will store all resources (images, css, js) required to fully load the page offline. Other browsers will have similar options.

  2. You can use wget to mirror a whole website for offline browsing.

    wget --mirror --convert-links --html-extension -p http://www.example.com/
    

    of course neither of these options will handle database driven elements of your site/page.

  3. If you want to mock a database or dynamic elements of a page offline then Google Gears is probably the closest to what you are looking for but I think it was deprecated by Google last year.

护你周全 2024-10-22 09:20:45

查看其他答案中链接的网站,大多数方法已被弃用。

现在让网站离线可用的最佳(受支持)选项是 Service Workers,所有主流浏览器均支持。您可能还想研究 PWA(渐进式网络应用程序),它有一些方法允许离线操作,包括 缓存存储 APIIndexedDB (对于二进制数据),或 WebStorage (用于存储键/值字符串对)。

Checking out websites linked in other answers, a majority of the methods are deprecated.

The best (supported) option to make a website available offline now are Service Workers, with support in all major browsers. You might also want to look into PWAs (progressive web apps), which have some methods to allow for offline operation, including APIs like the Cache Storage API, IndexedDB (for binary data), or WebStorage (to store key/value string pairs).

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