如何在html中包含一个包含在具有特殊字符的文件夹中的脚本文件

时间:2018-06-11 23:00:12

标签: javascript c# html razor asp.net-core

将node_modules文件夹作为我的解决方案的一部分后,我从Telerik运行npm命令下载了kendo-ui,它结束了创建这样的文件夹结构:

node_modules
--@progress
----kendo-ui
------js
--------kendo.all.js

问题是我希望将这些文件包含在HTML视图中。

1 - 我想知道如果你需要在没有razor的html中包含kendo.all.js的方法是什么

2 - 我想知道剃须刀中是否存在比我下面使用的更好的方式,允许我使用这些文件

@{
    var kendoPath = "@progress";
}

@section Styles{
    <link href="~/node_modules/@kendoPath/kendo-ui/css/web/kendo.common.min.css" rel="stylesheet" />
    <link href="~/node_modules/@kendoPath/kendo-ui/css/web/kendo.default.min.css" rel="stylesheet" />
    <link href="~/node_modules/@kendoPath/kendo-ui/css/web/kendo.default.mobile.min.css" rel="stylesheet" />
}

@section Scripts
    {
    <script src="~/node_modules/jquery/dist/jquery.min.js"></script>
    <script src="~/node_modules/@kendoPath/kendo-ui/js/kendo.all.js"></script>
    <script src="~/node_modules/@kendoPath/kendo-ui/js/kendo.all.js"></script>
}

0 个答案:

没有答案