sub.insert("port", QJsonValue("8080")); obj.insert("server", QJsonValue(sub)); //内存中的数据写到文件 QJsonDocument doc(obj); //将json对象转换成字符串 QByteArray data = doc.toJson(); QFile file("temo.json"); file.open(QIODevice::WriteOnly); file.write(data); file.close();...
在vscode中我们一般都是同一时间只运行一个代码,但是这种设置并不适合server/client模式,甚至有很多分布式和并行的项目需要同一时间运行多个client,针对这种情况我们可以通过设置vscode中的launch.json文件来实现。 我们可以在launch.json文件中设置多个configurations再compounds,以此实现同时运行多个程序,这里以python项目为例,...
npm ERR! vuedatabase@1.0.0 dev: `webpack-dev-server --inline --progress --config build/ onf.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the vuedatabase@1.0.0 dev script. npm ERR! This is probably not a problem with npm. There is likely additional logging ou npm WA...