-2
我有一行代碼我想在aRequest中設置具有布爾值的參數。如何在qt C++中設置它?在http中設置參數get請求在qt中C++
else if(requestPath.startsWith("/internal/Services")){ // note URL is /internal/...
windowsservice().service(aRequest, aResponse)
}
我有一行代碼我想在aRequest中設置具有布爾值的參數。如何在qt C++中設置它?在http中設置參數get請求在qt中C++
else if(requestPath.startsWith("/internal/Services")){ // note URL is /internal/...
windowsservice().service(aRequest, aResponse)
}
隨着對你的代碼中的一些假設,嘗試這樣的事情:
auto url = aRequest.url();
QUrlQuery query{url};
query.addQueryItem("boolparam", "1");
url.setQuery(query);
aRequest.setUrl(url);
什麼是'aRequest'? 'service()'做了什麼?它是否發送POST或GET請求? – w1ck3dg0ph3r
那麼,我的意思是它QNetworkRequest或其他? – w1ck3dg0ph3r