mvc JavaScriptResult的介绍

本文详细解析了JavaScriptResult和ContentResult在MVC框架中的使用方法及其实现原理,包括如何通过它们响应JavaScript脚本,并讨论了两者之间的区别与应用场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >



一、JavaScriptResult在MVC中的定义的代码片段


 public class JavaScriptResult : ActionResult
 {
     public override void ExecuteResult(ControllerContext context)
     {        
         HttpResponseBase response = context.HttpContext.Response;
         response.ContentType = "application/x-javascript";
         response.Write(this.Script);
     }
     public string Script { get; set; }
 }
  
 public abstract class Controller : ControllerBase, 
 {
     //其他成员
     protected virtual JavaScriptResult JavaScript(string script);
 }
<strong>

</strong>



其中:JavaScriptResult的属性Script表示响应的JavaScript脚本,而用于响应JavaScript脚本的ExecuteResult方法除了将脚本内容写入当前HttpResponse之外,还会将响应的媒体类型设置为“application/x-javascript”(不是“text/javascript”)。


 


二、可以通过ContentResult来实现与JavaScriptResult一样的脚本响应功能


例如下面两段代码效果一样


//JavaScriptResult:
     public class FooController : Controller
     {
         public ActionResult JavaScript()
         {
             return JavaScript("alert('Hello World!');");
         }
     }
      
    //ContentResult:
    public class FooController : Controller
    {
        public ActionResult JavaScript()
        {
            return Content("alert('Hello World!');", "application/x-javascript");
        }
    }



参考资料:mvc JavaScriptResult的用法    http://www.studyofnet.com/news/593.html


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值