从 asp.net mvc 控制器返回 js 文件

发布于 2024-08-27 09:47:32 字数 549 浏览 6 评论 0原文

嗨,所有程序员同事,

我希望为应用程序中的每个 MVC 集都有一个单独的 js 文件

/Controllers/
    -TestController.cs
/Models/
/Views/
    /Test/
        -Index.aspx
        -script.js

,并且我希望将 js 包含在 Index.aspx 中,

<script type="text/javascript" src="<%=UriHelper.GetBaseUrl()%>/Test/Js"></script>

或者更简单地说,当我调用 http://localhost/Test/Js 在浏览器中,它会向我显示 script.js 文件

如何编写 Action控制器?我知道这必须通过 return File 方法来完成,但我还没有成功创建该方法:(

Hi all fellow programmer

I'd like to have a separate js file for each MVC set I have in my application

/Controllers/
    -TestController.cs
/Models/
/Views/
    /Test/
        -Index.aspx
        -script.js

And I'd like to include the js in the Index.aspx by

<script type="text/javascript" src="<%=UriHelper.GetBaseUrl()%>/Test/Js"></script>

Or to put it easier, when I call http://localhost/Test/Js in the browser, it will show me the script.js file

How to write the Action in the Controller? I know that this must be done with return File method, but I haven't successfully create the method :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↘人皮目录ツ 2024-09-03 09:47:32

怎么样:

    public FileContentResult Js()
    {
        return File(System.IO.File.ReadAllBytes(Server.MapPath("/Test/script.js")), "text/javascript");
    }

我要补充一点,你确实应该将脚本放在 Content 文件夹下,因为 MVC 是关于约定之上的配置,并且通过尝试将脚本与视图放置在一起,你就打破了约定。

How about:

    public FileContentResult Js()
    {
        return File(System.IO.File.ReadAllBytes(Server.MapPath("/Test/script.js")), "text/javascript");
    }

I will add that you really should have your scripts under your Content folder as MVC is all about convention above configuration and by trying to place your scripts with your views you are breaking convention.

╭⌒浅淡时光〆 2024-09-03 09:47:32

两个选项:

  • 使用 Javascript ActionResult 将 javascript 作为字符串返回 使用
  • 文件下载 ActionResult

HTH 将 javascript 文件作为可下载文件返回。

Two options:

  • Return the javascript as a string using the Javascript ActionResult
  • Return the javascript file as a downloadable file using the File download ActionResult

HTH.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文