我可以使用 YQL 将数据发布到 php 页面吗?

发布于 2024-10-30 23:14:52 字数 32 浏览 1 评论 0原文

我可以使用 YQL 将数据发布到 php 页面吗?

Can I post data to php page using YQL ?

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

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

发布评论

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

评论(1

岁月苍老的讽刺 2024-11-06 23:14:52

简而言之,是的。

使用 块(docs< /a>),您可以编写 JavaScript 来发出外部 HTTP 请求:包括 POST。阅读 Christian Heilmann 关于该主题的一篇博客文章:使用 YQL 从需要 POST 数据的文档中读取 HTML

发出此类请求的 JavaScript 简短示例可能如下所示:

// Prepare POST request
var url  = "http://www.postbin.org/1k2hsu7";
var body = "question=5579467&name=faressoft";
var req  = y.rest(url).accept('text/html').post(body);

// Make the request, and get response
var res  = req.response;

// Assign to YQL response object
response.object = res.body;

In short, yes.

With an <execute> block (docs), you can write JavaScript to make external HTTP requests: POSTs included. Have a read of one of Christian Heilmann's blog posts on the subject: Using YQL to read HTML from a document that requires POST data.

A brief example of the JavaScript to make such a request might look like:

// Prepare POST request
var url  = "http://www.postbin.org/1k2hsu7";
var body = "question=5579467&name=faressoft";
var req  = y.rest(url).accept('text/html').post(body);

// Make the request, and get response
var res  = req.response;

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