我将制作一个使用Angular的简单MVC项目。我想我已经正确设置了一切,但显然我错过了一些可能很简单的东西。
当我运行网站并查看开发人员工具时,看起来好像在Angular之前加载了jQuery。我不知道为什么会这样或者如何强迫它首先加载。
我正在使用VS 2015并使用Web API应用程序创建了一个简单的MVC。我将Angular.js v1.5添加到我的脚本文件夹中,将ng-app添加到正文中,并将angular.js添加到bundle配置文件中。我确实重命名了捆绑包但我不认为这是问题所在。
这是我的BundleConfig。我将角度文件添加到jquery包并将其重命名为“tools”。我确保角度在jquery之前出现。
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/tools").Include(
"~/Scripts/angular.min.js",
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
}
这是我的_Layout页面。我将页脚中的包的名称更改为“工具”以匹配我的包。我还在我的身体标签上添加了ng-app。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - CPP Customer Call</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body data-ng-app="cppApp">
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
@Html.ActionLink("CPP Customer Call", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>
@Html.Partial("_LoginPartial")
</div>
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<p>© 2016 - @DateTime.Now.Year</p>
</footer>
</div>
@Scripts.Render("~/bundles/tools")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>
现在我只想写一个简单的表达式。
<h2>Angular {{ 1 + 1 }}</h2>
查看页面只显示“Angular {{1 + 1}}”而不是“Angular 2”。
答案 0 :(得分:0)
所以问题是我将应用名称应用到ng-app但是没有先为它创建模块。这是我修复它的方式。希望它可以帮助别人。
创建app.js文件。我把它放在我的Scripts / App / app.js结构中。
(function () {
var app = angular.module('cppApp', []); //('moduleName', [array of injected modules])
}());
并将我的BundleConfig.cs更新为此
bundles.Add(new ScriptBundle("~/bundles/tools").Include(
"~/Scripts/angular.min.js",
"~/Scripts/App/app.js",
"~/Scripts/jquery-{version}.js"));