How to make Laravel return a View#39;s quot;Content-Typequot; header as quot;application/javascriptquot;?(如何让 Laravel 返回视图的“Content-Type?标头为“应用程序/javascript?)
问题描述
我正在尝试使用 [script src=""]
标记从外部网站输出动态 javascript 文件以包含在内.由于视图使用 Blade 引擎,它被渲染为 text/html
.
I'm trying to output a dynamic javascript file for inclusion from external websites with the [script src=""]
tag. As the view is using the Blade engine, it's rendered as text/html
.
我希望该视图的 Content-Type
标头设置为 application/javascript
只是为了避免 Chrome 用类似Resource解释为脚本,但使用 MIME 类型 text/html 传输:
"
I'd like the Content-Type
header to be set to application/javascript
for this view only to avoid Chrome bugging me with messages like "Resource interpreted as Script but transferred with MIME type text/html:
"
我的控制器:
{
// ...
return View::make('embedded')->with('foo', $foo);
}
视图本身:
<?php
header('Content-Type: application/javascript; charset=UTF-8', true);
?>(function(jQuery) {
// append stylesheets to <head>
var file;
// ...
})(jQuery);
我发现我可以在我的视图中使用 header()
按预期添加自定义标题,例如 X-Content-Type
,但是当我尝试重新定义时Content-Type
标头即使将 replace
参数设置为 true
,它似乎也没有做任何事情.
I've found that I can use header()
in my view to add custom headers like X-Content-Type
as expected, however when I try to redefine the Content-Type
header it doesn't seem to do anything even with the replace
parameter set as true
.
我肯定在这里遗漏了一些明显的东西,希望你能指出来:)
I'm surely missing something obvious here, would appreciate your pointing it out to me :)
非常感谢您的帮助
推荐答案
Laravel 允许你通过 Response 类修改头部信息,所以你必须使用它.从您的视图中删除 header
行并在您的控制器中尝试这样:
Laravel lets you modify header information via the Response class, so you have to make use of it. Remove the header
line from your view and try it like this in your controller:
$contents = View::make('embedded')->with('foo', $foo);
$response = Response::make($contents, $statusCode);
$response->header('Content-Type', 'application/javascript');
return $response;
这篇关于如何让 Laravel 返回视图的“Content-Type"?标头为“应用程序/javascript"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何让 Laravel 返回视图的“Content-Type"?标头为“应用程序/javascript"?
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01