在Python中访问POST变量

时间:2012-04-19 17:01:56

标签: python ajax post

我有这个简单的测试AJAX请求,它将数据发送到python脚本。

$.ajax({
              url: 'parser.py',
              type: 'POST',
              data: {test:"test"},
              dataType: "text",
              success: function(result)
              {
                console.log(result)
              },
              error: function(request, status, error)
              {
                console.log("oops")
              }
            })

我知道这很简单,但是如何访问我发送到python脚本的已发布内容?它是否在像PHP这样的查询字符串中发送?

0 个答案:

没有答案