Symfony 操作与 json 响应

发布于 2024-10-17 02:51:55 字数 887 浏览 2 评论 0原文

我正在使用 PHP + CURL 在我的操作之一中从服务器获取数据。然后我从我的操作中以 json 形式返回数据。

我的操作如下所示

public function executeTest(sfWebRequest $request)
{
    $json = $this->getServerResponse();  // fetches data using CURL
    $this->getResponse()->setContentType('text/json');
    return $this->renderText($json);
}

当执行上述操作时,收到的 json strng 为(例如):

{ '好的': true }1

如果我将上述操作中的最后一行更改为 返回 $this->renderText('foo');

返回的 JSON 为:

{ 'ok': true }foo

如果我将上面操作中的最后一行更改为 返回 $this->renderText('');

返回的 JSON 为:

{ '好的': true }

我的问题是:

  1. 为什么来自服务器的 JSON 数据与 renderText() 方法中的文本一起显示?

  2. 附加到 JSON 数据的“1”来自哪里?

  3. 如何解决/修复此问题?

我在 Ubuntu 上运行 Symfony 1.4.x

I am using PHP + CURL to fetch data from a server in one of my actions. I then return the data as json from my action.

My action looks like this

public function executeTest(sfWebRequest $request)
{
    $json = $this->getServerResponse();  // fetches data using CURL
    $this->getResponse()->setContentType('text/json');
    return $this->renderText($json);
}

When the above action is executed, the received json strng is (for example):

{ 'ok': true }1

If I change the last line in the action above to
return $this->renderText('foo');

the returned JSON is:

{ 'ok': true }foo

If I change the last line in the action above to
return $this->renderText('');

the returned JSON is:

{ 'ok': true }

My question are:

  1. Why is the JSON data from the server being displayed together with the text in my renderText() method?

  2. Where is the '1' appended to the JSON data coming from?

  3. How do I resolve/fix this issue ?

I am running Symfony 1.4.x on Ubuntu

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

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

发布评论

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

评论(1

吾性傲以野 2024-10-24 02:51:55

从表面上看,您的问题出在 getServerResponse() 上。如果没有看到该功能,就无法提供更多帮助。

From the looks of it, your problem lies in getServerResponse(). Can't help more without seeing that function.

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