/home/wuyan/test/mainwindow.cpp:73: error: 'class QNetworkConfigurationManager' has no member named 'configurationFromName'; did you mean 'configurationRemoved'? QNetworkConfiguration config = manager.configurationFromName(ethname); ^~~~~~~~~~~~~~~~~~~~~ configurationRemoved
时间: 2023-09-11 10:11:27 浏览: 123
GoApiServer:一个可以自动构建CURD控制器的go-api服务,并预设RBAC权限功能
这个错误发生的原因是在 QNetworkConfigurationManager 类中没有名为 configurationFromName 的成员函数。可能你想要使用的是 configuration 方法,它返回一个 QNetworkConfiguration 对象,该对象表示当前网络配置。
你可以使用以下代码来获取网络配置:
```cpp
QNetworkConfigurationManager manager;
QNetworkConfiguration config = manager.configuration();
```
其中 `config` 就是当前的网络配置对象。如果你需要获取指定名称的网络配置,可以使用 `allConfigurations()` 方法来获取所有网络配置,然后遍历查找名称匹配的配置对象。
阅读全文