我正在使用 Orchard CMS 1.8 并创建了一些聚合物组件。如果我在 Themes 文件夹中添加聚合物组件并使用语法访问它
RegisterLink(new LinkEntry { Rel = "import", Href = Url.Content("~/Themes/TheThemeMachine/components/font-roboto/roboto.html") });
在布局页面中,一切正常。
现在我正在尝试将这些 html 组件移动到不同的项目中。我为此创建了一个模块,并在那里添加了这些聚合物 html 组件,我正在尝试引用。它不工作。
RegisterLink(new LinkEntry { Rel = "import", Href = Url.Content("~/Modules/Polymer/components/font-roboto/roboto.html") });
我尝试在我的 ResourceManifest (在我的新模块中)中添加脚本和样式引用,我能够使用Script.Require
and注入脚本和样式Style.Require
。
我不确定如何导入 html。谁可以帮我这个事。