我想将数据从客户端发送到服务器,当我尝试连接到serevr时,客户端显示未知错误,并且没有数据发送
它只显示空字符串“”,
任何帮助将不胜感激。
这是代码:
//客户端
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
tcpSocket = new QTcpSocket(this);
connect(tcpSocket, SIGNAL(connected()), this, SLOT(connected()));
QHostAddress ha;
ha.setAddress("myIP");
tcpSocket->connectToHost(ha, 6401);
if(!tcpSocket->waitForConnected(3000)) {
ui->lineEdit->setText(tcpSocket->errorString());
}
else
ui->lineEdit->setText("connected");
}
void Widget::connected()
{
tcpSocket->write("hello this is client\r\n");
tcpSocket->flush();
tcpSocket->waitForBytesWritten(3000);
tcpSocket->close();
}
//服务器
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
tcpServer = new QTcpServer(this);
connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newConnection()));
if(!tcpServer->listen(QHostAddress::Any, 6401)) {
ui->lineEdit->setText("server not started");
}
else
ui->lineEdit->setText("server started");
}
void Widget::newConnection()
{
QTcpSocket *tcpSocket= tcpServer->nextPendingConnection();
qDebug() << tcpSocket->readAll();
tcpSocket->waitForReadyRead(3000);
tcpSocket->close();
}
答案 0 :(得分:0)
问题在于:
//错误的订单
curl -H "Content-Type: application/json" -X POST -d'{
"name":"visadfasfas","scope":"local","driver":local,"type":"tmpfs"
}' https://<HOST-IP>:2376/volumes/create
//正确的顺序:
qDebug() << tcpSocket->readAll();
tcpSocket->waitForReadyRead(3000);