如何禁止在模块的 view.yml 中包含传递的 JavaScript 和样式表文件?
在 symfony1.1 中,我开发了一个模块,该模块不应包含其应用程序的任何传递的 javascript 和样式表。
因此,我创建了一个特定于模块的 view.yml
,但我找不到禁用它们的语法。
我原来的问题只涉及 JavaScript 和 CSS。但现在我想删除元数据和http_tags。出于某种原因,我得到的是:
all:
http_metas: [-*]
metas: [-*]
实际标签
<meta name="0" content="-*" />
有人知道这里有什么不同吗?
In symfony1.1, I develop a module that shall not include any of the passed down javascripts and stylesheets of its application.
I hence I created a module-specific view.yml
, yet I cannot find the syntax for disabling them.
My original question involved only JavaScript and CSS. But now I want to remove metas and http_tags as well. For some reason I get for:
all:
http_metas: [-*]
metas: [-*]
the actual tag
<meta name="0" content="-*" />
Does anyone know what's different here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以排除所有传递的 JavaScript 和样式表,或仅删除特定的 JavaScript 和样式表。
例如:
或:
You can exclude all the passed down javascripts and stylesheets, or remove just specific ones.
For example:
or:
元数据似乎不可能:
It does not seem possible for metas: