如何编写static_files排除Google App Engine yaml中的一个子目录

发布于 2024-11-14 16:14:21 字数 520 浏览 4 评论 0原文

在GAE中的app.yml中,我们使用正则表达式来匹配某种类型的url地址。

如果我想匹配路径中非特定字符串的子目录(不包括一个),我不知道如何编写正则表达式?

例如:

我想将 foo/bar/.* 作为静态文件上传排除 foo/bar/dir/.* 中的任何文件,如何在 app.yaml 中处理这个问题。

包含目录中的文件作为静态文件,例如:

foo/bar/main.css
foo/bar/js/main.js

排除目录中的文件(将这些文件用作应用程序模板),如下所示:

foo/bar/views/index.html

我需要此功能的原因是我有将模板文件与父文件中的静态文件混合。像 WordPress 主题模板文件。

谢谢。

With app.yml in GAE, we use regular expressions to match a certain type of url address.

If I want to match a subdirectory of the path which is not a particula string(exclude one ), I do not know how to write regular expression?

For example:

I want to upload foo/bar/.* as static files exclude any files in foo/bar/dir/.* , how to deal with this in app.yaml .

include files in dir as static files like :

foo/bar/main.css
foo/bar/js/main.js

exclude files in dir(to use these files as application templates) like this:

foo/bar/views/index.html

The reason why I need this function is that I have mixed templates file with static files in a parent file. like Wordpress theme templates file.

Thanks.

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

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

发布评论

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

评论(1

葮薆情 2024-11-21 16:14:21

大多数人将所有静态文件保存在名为“public”或“static”的子目录中,以避免出现此问题,我建议您也这样做。

您可以添加一行来通过扩展名捕获文件,例如:

- url: /foo/bar/([^.]+\.(js|css))
  static_files: foo/bar/\1
  upload: foo/bar/[^.]+\.(js|css)

Most people keep all their static files in a subdirectory called "public" or "static" to avoid this issue, and I recommend you do the same.

You could add a line to catch your files by extension like:

- url: /foo/bar/([^.]+\.(js|css))
  static_files: foo/bar/\1
  upload: foo/bar/[^.]+\.(js|css)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文