2

我有很多客户我想给他们脚本,所以我想根据他们的客户 ID 创建 JS 文件。所以我可以返回并直接在客户端执行。客户端可以是 PHP、Html、ASP.net 中的任何人

问题是当我浏览这个链接时它给了我 JS 字符串但是在客户端这个脚本没有像测试一样执行我发出警报这个警报没有显示在客户端


顾客

<head>
    <script src="http://localhost:12604/JSCreator/Handler.ashx?CustomerID=123" type="text/javascript"></script>
    <title></title>
</head>

处理程序文件

public class Handler : IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        string CustomerId = context.Request["CustomerId"].ToString();
        string jscontent = JSFileWriter.GetJS(CustomerId); // This function will return my custom js string

        context.Response.ContentType = "text/javascript";
        context.Response.Write(jscontent);
    }

    public bool IsReusable
    {
        get
        {
            return false;
        }
    }
}
4

1 回答 1

7

ContentType应该application/javascript

public void ProcessRequest(HttpContext context)
{
    string CustomerId = context.Request["CustomerId"].ToString();
    string jscontent = JSFileWriter.GetJS(CustomerId); // This function will return my custom js string

    context.Response.ContentType = "application/javascript";
    context.Response.Write(jscontent);
}
于 2012-06-07T07:16:39.917 回答