gpt4 book ai didi

php - Laravel 生成的 XML 文件开头有空格

转载 作者:行者123 更新时间:2023-12-04 00:28:09 24 4
gpt4 key购买 nike

我正在使用 Laravel 4 生成 Google 产品提要。我正在使用 Blade 文件来执行此操作,但 Laravel 在输出的最开始添加了一个神秘空间,这导致 Google 拒绝 XML 文件,因为无效的。有什么想法吗?

我的 Controller 是:

public function googleFeed()
{
//generates a Google Merchant XML feed of products
$products = DB::table('products')->get();
$content = View::make('shop.googlefeed', ['products' => $products]);
return Response::make($content, '200')->header('Content-Type', 'text/xml');

}

还有我的 Blade 文件:

<?xml version="1.0" encoding="ISO-8859-1"?>
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
<channel>
<title>Title</title>
<link>http://example</link>
<description>Desc</description>
@foreach ($products as $product)
<item>
<g:id>{{($product->id)}}</g:id>
<title>{{($product->productname)}}</title>
<link>http://example.com/product/{{($product->slug)}}</link>
<description>{{($product->shortdesc)}}</description>
<g:image_link>{{($product->imgurlthumb)}}</g:image_link>
<g:price>{{($product->productprice)}} GBP</g:price>
<g:gtin>{{($product->gtin)}}</g:gtin>
<g:condition>new</g:condition>
<g:availability>in stock</g:availability>
</item>
@endforeach
</channel>
</rss>

Blade 文件中没有空间。但是,输出是:

 <?xml version="1.0" encoding="ISO-8859-1"?>
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
<channel>
<title>Title</title>
....

为什么要加这个空格?我只是看不出它会从哪里来!这看起来不是什么大问题,但它会导致 Feed 验证失败并被 Google 拒绝。无法确定其来源,有没有办法在处理后将其剥离?

非常感谢。

最佳答案

当我注意到我的 routes.php 文件的开头有一个空格时,我解决了这个问题。删除这个解决了这个问题。简单但令人沮丧,希望它能帮助别人! (空格可以位于大多数文件的开头。)

 <?php
Route::get('/', function () {
return "Hello";
});
...

收件人:

<?php
Route::get('/', function () {
return "Hello";
});
...

关于php - Laravel 生成的 XML 文件开头有空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29878712/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com