本文介绍了MVC 6参考jQuery的通过的NuGet后加入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个新的MVC项目6,空的模板。通过添加的NuGet JQuery的。你怎么引用它然后在_layout文件或任何你想要使用它。我没有在那里使用jQuery的脚本文件夹中。

I created a new MVC 6 project, empty template. added JQuery via NuGet. How do you reference it then in your _Layout file or wherever you want to use it. I dont have a script folder with Jquery in there.

<head>
<meta name="viewport" content="width=device-width" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" href="~/css/site.css" />
<script src=""></script> -- HERE

<title>@ViewBag.Title</title>
</head>
<body>
<div>
    @RenderBody()
</div>
@RenderSection("scripts", required: false)
</body>
</html>

推荐答案

从的NuGet取出包,并通过添加亭子。如果您已经创建了一个新的MVC 6空项目。你将需要添加一个bower.json文件,然后添加Jquery的依赖

Remove the package from Nuget and add via bower. If you have created a new MVC 6 empty project. you will need to add a bower.json file and then add the Jquery dependency

{
  "name": "ASP.NET",
  "private": true,
  "dependencies": {
    "jquery": "2.1.4"
 }
}

然后在你的布局添加引用

Then in your layout add the reference

<script src="~/lib/jquery/dist/jquery.js"></script>

这篇关于MVC 6参考jQuery的通过的NuGet后加入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 22:45