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"
        }

    



좋은 웹페이지 즐겨찾기