我需要在收到消息时更新聊天窗口的内容。以下是我使用的两个函数:
void LinPop::_createChat(Client *socket)
{
ChatDialog *chat = new ChatDialog();
chat->setAttribute(Qt::WA_DeleteOnClose);
qDebug() << "Connecting chat : ";
qDebug() << connect(chat, SIGNAL(toSend(QString&)), socket, SLOT(send(QString&)));
qDebug() << connect(socket, SIGNAL(gotTexted(QString)), chat, SLOT(updateChat(QString)));
chat->exec();
}
这是插槽有东西要读的时候调用的插槽。它工作正常,除了没有发出信号或没有调用连接的插槽。
void Client::readyRead()
{
if (this->_socket->bytesAvailable() > 0)
{
QByteArray data = this->_socket->readAll();
QString text(data);
emit gotTexted(text);
qDebug() << "ReadyRead [" << text << "] [" << this->_socket->bytesAvailable() << "]";
}
}
控制台输出:
Connecting chat :
true
true
Sent [ "Test" ]
ReadyRead [ "Test" ] [ 0 ]
现在,如果我这样做,它会进入一个无限循环,但突然信号/插槽工作正常,我的文本被发送到聊天窗口并显示:
void Client::readyRead()
{
if (this->_socket->bytesAvailable() > 0)
{
QByteArray data = this->_socket->readAll();
QString text(data);
this->_socket->write(data); // Added this
emit gotTexted(text);
qDebug() << "ReadyRead [" << text << "] [" << this->_socket->bytesAvailable() << "]";
}
}
控制台输出:
Connecting chat :
true
true
Sent [ "Test" ]
ReadyRead [ "Test" ] [ 0 ]
Update Chat [ "Test" ]
ReadyRead [ "Test" ] [ 0 ]
// Infinite Loop
我不明白为什么它首先不起作用或为什么,当我把它变成一个无限循环时,它突然开始工作......
PS:这是updateChat插槽:
void ChatDialog::updateChat(QString text)
{
this->ui->tbConv->insertPlainText(text);
qDebug() << "Update Chat [" << text << "]";
}
答案 0 :(得分:0)
如何执行套接字连接?我无法让代码负责监听连接。如果您没有任何其他tcp客户端尝试使用telnet