包括没有本地服务器?

发布于 2024-12-12 05:31:48 字数 126 浏览 0 评论 0原文

我正在制作一个网站,我喜欢离线测试所有内容,而不是每次更改时都必须上传文件。问题是我无法使用包含,所以当我上传时,我将不得不更改很多文件结构。

当我只想使用包含时,我不打算安装像 WAMP 这样的本地服务器。有什么办法吗?

I'm making a website, and I like testing everything offline instead of having to upload files with every change I make. The problem is I can't use includes, so when I do upload, I'm going to have to change a lot of the file structure.

I'm not looking to install a local server like WAMP when I just want to use includes. Is there any way?

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

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

发布评论

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

评论(1

沧笙踏歌 2024-12-19 05:31:48

并不真地。

您可以静态地处理包含内容(例如,自己编写一个 Makefile 来创建您在本地查看的实际 HTML 文件)。有很多模板语言可以做到这一点。我想,您甚至可以用 JavaScript 编写模板,然后让 Web 浏览器组装它们。

但实际上,为什么您不希望测试环境与生产环境相匹配呢?这看起来很愚蠢——如果您的包含内容有问题,您希望在发布之前找出答案。如果您不小心获取了文件中图像的本地路径 (C:\Documents and Settings\...\image.png),您可能想找出答案。做到这一点的最佳方法实际上是在本地运行网络服务器。

Not really.

You could process includes statically (e.g., write yourself a Makefile to create the actual HTML files you view locally). There are plenty of template languages out there that could do this. You could, I suppose, even write your templates in JavaScript and let the web browser assemble them.

But really, why wouldn't you want your test environment to match your production environment? This seems silly—if there is something wrong with your includes, you want to find out before you make it live. If you accidentally get a local path to an image (C:\Documents and Settings\…\image.png) in a file, you want to find out. The best way to do this is really to run a webserver locally.

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