Qt+QML+Html의 개발 모델.
2663 단어 QT
1.QT.프로 파일 설정
QT += qml quick webengine
2. QML 파일
import QtQuick 2.5
import QtQuick.Window 2.2
import QtWebEngine 1.4
import QtQuick.Controls 2.0
import QtWebSockets 1.1
Window {
visible: true
width: 1500
height: 900
title: qsTr("Hello World")
WebEngineView {
id: eCharts
anchors.fill: parent
url: "qrc:/index.html"
Component.onCompleted: {
}
}
// websocket .
WebSocketServer {
id: server
port: 12335
listen: true
onClientConnected: {
webSocket.onTextMessageReceived.connect(function(message) {
console.log((qsTr("Server received message: %1").arg(message)));
webSocket.sendTextMessage(qsTr("Hello html!"));
});
}
onErrorStringChanged: {
console.log(qsTr("Server error: %1").arg(errorString));
}
}
Button{
id:btFunc
text: "PressMe"
anchors.bottom:eCharts.bottom
onClicked: {
// html sayHelloFromQML, result
eCharts.runJavaScript("window.sayHelloFromQML(\""+"Hello HTML"+"\")",
function(result) {
console.log(result);
}
);
}
}
}
3. Html 파일
Qt+QML+HTML
if ("WebSocket" in window)
{
}else{
alert(" WebSocket!");
}
// web socket
var ws = new WebSocket("ws://localhost:12335/echo");
ws.onopen = function()
{
// Web Socket , send()
alert("websocket ...");
};
ws.onmessage = function (evt)
{
var received_msg = evt.data;
alert(" ..."+received_msg);
};
ws.onclose = function()
{
// websocket
alert(" ...");
};
// QML
function sendMsgToQML(){
ws.send("Hello QML");
}
// QML
function sayHelloFromQML(msg){
alert(msg)
return "sayHelloToQML"
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간편한 채팅 시스템 - 메시지 전달 서버메시지 전송 서버는 메시지 대기열에서 온 데이터를 받아들여 디코딩, 식별 등을 하고 마지막으로 분류를 나눈다.예를 들어 채팅 시스템은 같은 그룹과 같은 세션의 정보를 같은 그룹 서비스로 전송한다(물론 아직 같은 그룹...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.