在我的MVC应用程序中,我想使用require.js。我正在尝试使用以下方式;

@Scripts.Render("~/bundles/require")


在require.js文档中记录为:

<!--This sets the baseUrl to the "scripts" directory, and
    loads a script that will have a module ID of 'main'-->
<script data-main="scripts/main.js" src="scripts/require.js"></script>


因此,我需要在MVC部分中设置data-main =“ scripts / main.js”部分。

我该如何通过Scripts.Render函数添加其他属性?

最佳答案

发现需要使用以下方式;

  @Scripts.RenderFormat("<script type=\"text/javascript\" data-main=\"/JavaScript/main.js\" src=\"{0}\"></script>", "~/bundles/require")

关于javascript - 通过Scripts.Render将自定义属性添加到脚本标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34844686/

10-11 14:53