Files
XdlOrm/test/qxBlogRestApi/qt/rcc/documents/test_http_server_qt6.qml
2026-04-03 11:32:07 +08:00

40 lines
1.1 KiB
QML

import QtQuick
import QtQuick.Controls
Item {
width: 500
height: 130
Column {
anchors.fill: parent
spacing: 10
anchors.leftMargin: 5
anchors.rightMargin: 5
Label {
anchors.left: parent.left
anchors.right: parent.right
horizontalAlignment: Text.AlignHCenter
text: " "
}
Label {
anchors.left: parent.left
anchors.right: parent.right
horizontalAlignment: Text.AlignHCenter
text: "!!! Test QxOrm QxRestApi module from a web page using QxHttpServer module !!!"
font.bold: true
color: "blue"
}
Label {
anchors.left: parent.left
anchors.right: parent.right
horizontalAlignment: Text.AlignHCenter
text: "Please open your web browser to this URL : http://localhost:9642/files/test_http_server.html"
}
Label {
anchors.left: parent.left
anchors.right: parent.right
horizontalAlignment: Text.AlignHCenter
text: "Note : closing this QML window means stopping QxOrm HTTP server too."
}
}
}