QUrl url = QUrl::fromLocalFile(BUILD_DIR "/index.html");
url.setQuery(QStringLiteral("webChannelBaseUrl=") + server.serverUrl().toString());
QDesktopServices::openUrl(url);
期待するURLは、
"file:///C:/Qt/Qt5.4.0gw/Examples/Qt-5.4/webchannel/build-standalone-Desktop_Qt_5_4_0_MinGW_32bit-Debug/index.html?webChannelBaseUrl=ws://127.0.0.1:12345"
ですが、実際はクエリパラメータが外されたURLがブラウザ上に表示されます。
"file:///C:/Qt/Qt5.4.0gw/Examples/Qt-5.4/webchannel/build-standalone-Desktop_Qt_5_4_0_MinGW_32bit-Debug/index.html"
これはバグなのでしょうか?
以上、宜しくお願いいたします。