活塞返回 HTML 而不是 JSON

发布于 2024-12-26 09:32:22 字数 1152 浏览 1 评论 0原文

我正在使用 Django 和 Piston,并创建了以下处理程序:

from piston.handler import BaseHandler
import datetime
import json

class NotificationHandler( BaseHandler ):
  allowed_methods = ('POST',)

  def create( self, request, token ):
    return json.dumps( datetime.datetime.now() )

向该处理程序发出请求时,我得到一个 html 页面:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
  <title>something</title>
  <META name="description" content="something"><META name="keywords" content="something">
</head>
<frameset rows="100%,*" border="0">
  <frame src="http://something.com/pay/notify/345345/" frameborder="0" />
  <frame frameborder="0" noresize />
</frameset>
<!-- pageok -->
<!-- 03 -->
<!-- -->
</html>

看起来它将调用包装到框架集中。 不过我希望得到类似的信息:

"2012-01-11 00:17:24"

我正在使用 apache 和 mod_wsgi。 当从 PyCharm IDE 提供的服务器本地运行项目时,我得到了预期的 json 值。

不知道为什么我会得到不同的结果,因为我使用相同的脚本来发出请求(具有相同的标头)。

什么会使 Piston 返回 HTML 页面而不是原始 json 字符串?可以是标题吗?

I'm working with Django and Piston and I created the following Handler:

from piston.handler import BaseHandler
import datetime
import json

class NotificationHandler( BaseHandler ):
  allowed_methods = ('POST',)

  def create( self, request, token ):
    return json.dumps( datetime.datetime.now() )

When making a request to this handler I'm getting an html page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
  <title>something</title>
  <META name="description" content="something"><META name="keywords" content="something">
</head>
<frameset rows="100%,*" border="0">
  <frame src="http://something.com/pay/notify/345345/" frameborder="0" />
  <frame frameborder="0" noresize />
</frameset>
<!-- pageok -->
<!-- 03 -->
<!-- -->
</html>

It looks like it's wripping the call into a frameset.
However I would expect to get something like:

"2012-01-11 00:17:24"

I'm using apache with mod_wsgi.
When running the project locally from the server provided by the PyCharm IDE I get the expected json value.

Not sure why I'm getting different results since I'm using the same script to make the request (with the same headers).

What would make Piston return an HTML page instead of a raw json string? May it be a header?

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

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

发布评论

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

评论(2

新一帅帅 2025-01-02 09:32:23

中描述的 WSGI 应用程序包装器

考虑使用http://code.google.com/ p/modwsgi/wiki/DebuggingTechniques#Tracking_Request_and_Response

捕获请求的输入和输出。

这将允许您验证 Django 是否被调用,以及返回到 mod_wsgi 的内容,从而确定问题是否出在 Django 内,如果在应用程序返回响应后导致问题,则是否是 Apache 缓存或其他原因。

Consider using the WSGI application wrapper described in:

http://code.google.com/p/modwsgi/wiki/DebuggingTechniques#Tracking_Request_and_Response

to capture both input and output for the request.

This will allow you to verify whether Django gets called, plus what is returned into mod_wsgi and so determine if issue is within Django of whether Apache caching or something else if causing issue after application returns response.

另类 2025-01-02 09:32:22

检查您的 Apache 配置并确保调用该函数(引发 David Robinson 提出的异常)。

Check your Apache configuration and make sure that the function is called (raising an exception like proposed by David Robinson).

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