将 GWT 输入发布到 PHP 页面
我有一个带有输入的 GWT 应用程序(例如姓名、地址、电子邮件)。用户输入所有必填字段并按提交按钮后,PHP 页面将显示来自 GWT 应用程序的输入。如何将我的 GWT 应用程序连接到 php?我现在正在使用请求生成器。我是否仍然需要使用 XML 将 GWT 输入传递给 PHP?请帮忙。我刚刚开始在这里学习GWT。
提前致谢。
I have a GWT app with inputs (let's say Name, Address, Email). After user input all the required fields and press submit button, a PHP page will display the inputs from the GWT app. How can I connect my GWT app to php? I'm using Request Builder now. Do I still have to use XML to pass the GWT inputs to PHP? Please help. I'm just starting to learn GWT here.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,您不需要 RequestBuilder 来完成类似的事情。
如果您重定向到 PHP url 并将输入附加为 GET 参数就足够了。
例如,在点击处理程序中,您可以执行类似的操作:
然后在 PHP 页面中,您可以通过以下方式检索参数:
更新
如果您想使用 RequetBuilder,则必须执行类似的操作:
在服务器上,您只需访问全局 $_POST 变量即可获取值:
You actually don't need RequestBuilder for something like that.
It would be sufficient if you redirect to the PHP url and append your inputs as GET parameters.
So for example in the click handler you can do something like that:
and then in the PHP page you can retrieve the parameters in this way:
Update
If you want to use RequetBuilder you have to do something like that:
On the server you just access the global $_POST variable to get the values: