如何在Qt Creator中将数据发送到服务器?
在我的应用程序中,我有 3 个文本字段。我需要将这些值发送到服务器。我的服务器已经托管在某处。如果值匹配,我需要获取 SUCCESS 响应消息。 我们可以使用 C++ 中的 JSON 对象在客户端和服务器之间进行通信吗?
In my application i have 3 text fields. I need to send those values to server. Already my server is hosted somewhere. If the values are matched i need to get the SUCCESS response message.
Can we use the JSON Objects to communicate between client and server in C++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许 QNetworkAccessManager 就是您正在寻找的。我猜你想向这个“服务器”发出一些http请求。如果这不是您想要的,那么您应该指定您的服务器使用哪种协议。
Probably QNetworkAccessManager is what you're looking for. I gues that you want to make some http requests to this "server". In case it is not what you're looking for, then you should specify what kind of protocol uses your server.