所以我想用聚合物制作一个时尚的mvc网页。我不喜欢从头开始,因为当谈到asp mvc时我仍然有点像菜鸟,所以我开始使用Visual studio asp mvc模板。我做的唯一更改是删除了对_Layout.cshtml上的bootcamp和导航菜单的引用,并添加了一个核心工具栏(+其他一些小的html更改)。它起初效果很好,但在我对索引文件进行更改后,所有聚合物样式都会丢失。
这是我的_layout.cshtm:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
@*@Styles.Render("~/Content/ArmistanceMaterial.css?"+Guid.NewGuid())*@
<link rel="import" href="bower_components/core-toolbar/core-toolbar.html?@Guid.NewGuid()">
<link rel="import" href="bower_components/font-roboto/roboto.html?@Guid.NewGuid()">
<link rel="stylesheet" href="Content/ArmistanceMaterial.css?@Guid.NewGuid()">
<title>Armistance</title>
</head>
<body>
<core-toolbar>
<img src="~/Content/Images/Armistance.png" height="50%" style="padding-right:15px;" />
<span flex>Armistance</span>
</core-toolbar>
<section>
@RenderBody()
</section>
<section>
<hr />
<footer>
<p>© @DateTime.Now.Year - My ASP.NET Application</p>
</footer>
</section>
@*@Scripts.Render("~/bundles/webcomponents")*@
</body>
</html>
这是我的Index.cshtml:
@{
ViewBag.Title = "Home Page";
}
<div>
<h1>ASP.NET</h1>
<p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p>
<p><a href="http://asp.net">Learn more »</a></p>
</div>
<div >
<div >
<h2>Getting started</h2>
<p>
ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that
enables a clean separation of concerns and gives you full control over markup
for enjoyable, agile development.
</p>
<p><a href="http://go.microsoft.com/fwlink/?LinkId=301865">Learn more »</a></p>
</div>
<div >
<h2>Get more libraries</h2>
<p>NuGet is a free Viual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.</p>
<p><a href="http://go.microsoft.com/fwlink/?LinkId=301866">Learn more »</a></p>
</div>
</div>
一切似乎都运转正常: 直到我做删除或添加div(在这种情况下添加)之类的东西。
答案 0 :(得分:0)
我认为这是因为我没有使用相对于根的路径,而是使用当前视图dir。在我看来这很奇怪,因为我认为刷新页面不会改变活动目录。
修复:在路径的开头添加“〜/”
仅供参考:我在发布此消息后不久就想到了这一点,只是想澄清一下,这个愚蠢的错误并没有花费我一周的时间才弄明白。