gpt4 book ai didi

javascript - 将代码迁移到 html 和 javascript 后如何引用包

转载 作者:太空宇宙 更新时间:2023-11-04 06:01:53 25 4
gpt4 key购买 nike

我有一个 index.cshtml 文件,其中的代码行为

(@Styles.RenderFormat(@"<link rel=""stylesheet"" href="" {0}"" 
async/>","~/Content/csslogin")

它引用了一个用 ASP.NET 编写的文件,该文件具有包含 CSS 的包 文件。

现在我正在将该 .cshtml 和 ASP.NET 文件迁移到 HTML 和 分别是 JavaScript/angularjs 文件。那么在其中创建 bundle 的语法是什么 JavaScript/angularjs 并引用 JavaScript/angularjs 从 HTML 文件中捆绑?

.cshtml 文件中的代码

@Styles.RenderFormat(@"<link rel=""stylesheet"" href="" {0}"" 
async/>", "~/Content/csslogin")

.cs 文件中的代码

public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new StyleBundle("~/Content/csslogin")
.Include("~/assets/css/bootstrap.min.css")
);

最佳答案

如果在 cshtml 文件中使用,它具有以下语法:

@Styles.Render("~/Content/csslogin")

对于 javascript 文件,语法是:

@Scripts.Render("~/script/lib")

在 bundles 配置中:

bundles.Add(new ScriptBundle("~/script/lib")
.Include("~/scripts/jquery-1.11.0.min.js")
.IncludeDirectory("~/content/rateit", "*.js")
);

关于javascript - 将代码迁移到 html 和 javascript 后如何引用包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57217236/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com