从websocket接收QString值,直接用QString::toStdString转成std::string会导致程序崩溃,如下图
解决办法:
使用 std::string str = std::string((const char *)msg.toLocal8Bit()); 进行转换