谷歌关闭 XhrIo

发布于 2024-12-01 10:27:48 字数 350 浏览 0 评论 0原文

我是 Google Closure 的新手,我想了解 XhrIo 的工作原理。我已阅读 XHRIO 的概述 http://code.google.com/closure/ Library/docs/xhrio.html

基本上,我正在遵循该示例,但我无法使其工作。我使用 eclipse 和 tomcat 作为服务器来执行该示例。有人可以告诉我如何在 html 和使用 goog.require('goog.net.XhrIo'); 的 java 脚本之间建立连接吗?和 json 文件?谢谢你们。

I am new to Google Closure and I would like to know on how XhrIo works. I have read the overview of XHRIO http://code.google.com/closure/library/docs/xhrio.html

basically, I am following the example but I just can't make it work. I am using eclipse and tomcat as my server to perform the example. Can someone please enlighten me on just how to make the connection between html, the java script that uses the goog.require('goog.net.XhrIo'); and the json file? Thank you guys.

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

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

发布评论

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

评论(1

归途 2024-12-08 10:27:48

以下是发出 post 请求的示例:

goog.require('goog.Uri');
goog.require('goog.net.XhrIo');

var qd = new goog.Uri.QueryData(); 
qd.add('name1', 'val1'); 
qd.add('name2', 'val2'); 
function done(e) { 
   this.getResponseText();
   this.getResponseJson();
}  
goog.net.XhrIo.send('/controller/action', done, 'POST', qd.toString());

Here is a sample to make a post request:

goog.require('goog.Uri');
goog.require('goog.net.XhrIo');

var qd = new goog.Uri.QueryData(); 
qd.add('name1', 'val1'); 
qd.add('name2', 'val2'); 
function done(e) { 
   this.getResponseText();
   this.getResponseJson();
}  
goog.net.XhrIo.send('/controller/action', done, 'POST', qd.toString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文