Applet Web 应用程序交互

发布于 2024-10-05 22:22:14 字数 838 浏览 3 评论 0原文

我有一个小程序,它根据用户操作调用 URL,并传递一些参数。这些参数在 ROR 服务器上执行,然后我根据结果更新小程序页面上的部分参数。但是,部分内容并未更新。

控制台显示部分已渲染,但事实并非如此。是否因为我从小程序调用 URL,而服务器不知道小程序位于当前会话中,因此它不知道要呈现哪个会话部分?

这是控制器的代码:

def add_point
 @comments = Comment.find(:all)
 render :update do |page|
  page[:comment_text].value = ""
  page.replace_html :comments_partial, :partial => 'comments', :collections=>@comments
 end
end

编辑:我使用 Apache commons http 包装器发送请求:

 PostMethod post = new PostMethod("http://localhost:3001/vizs/add_point");

 post.addParameter("upload[test]", dataImg);
 post.addParameter("upload[user_id]", new Integer(user_id).toString());
 post.addParameter("upload[viz_id]", new Integer(viz_id).toString());

我想我需要设置额外的请求变量,但我不确定要设置什么......

关于如何解决这个问题有什么建议吗?

谢谢,

槽型

I have an applet that calls a URL, on a user action, and passes some parameters. These parameters are executed on a ROR server and then I update a partial, which is on the applet's page, based on the result. However, the partial is not updating.

The console says that the partial is rendered but it is not. Is it because I am calling the URL from the applet and the server is unaware that the applet is in the current session, hence it does not know which session partial to render?

Here is the code of the controller:

def add_point
 @comments = Comment.find(:all)
 render :update do |page|
  page[:comment_text].value = ""
  page.replace_html :comments_partial, :partial => 'comments', :collections=>@comments
 end
end

EDIT: I use Apache commons http wrapper to send the request:

 PostMethod post = new PostMethod("http://localhost:3001/vizs/add_point");

 post.addParameter("upload[test]", dataImg);
 post.addParameter("upload[user_id]", new Integer(user_id).toString());
 post.addParameter("upload[viz_id]", new Integer(viz_id).toString());

I think I need to set additional request variables but I am unsure what to set....

Any suggestion on how to solve this?

Thanks,

Slotishtype

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

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

发布评论

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

评论(1

再见回来 2024-10-12 22:22:14

Rails 不知道小程序,也不知道如何使用它,您需要发送 xml 或 json 甚至 html:

def add_point
 @comments = Comment.find(:all)
 render :partial => 'comments', :collections=>@comments, :layout => nil
end

在小程序中解析它并自己填写适当的字段。

rails is not aware about the applet, and does not know how to work with it, you need to send xml or json or even html:

def add_point
 @comments = Comment.find(:all)
 render :partial => 'comments', :collections=>@comments, :layout => nil
end

parse it in applet and fill appropriate fields by yourself.

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