如何使用 QWebChannel 将信息从 JS 传递到 Python

Posted

技术标签:

【中文标题】如何使用 QWebChannel 将信息从 JS 传递到 Python【英文标题】:How to pass info from JS to Python using QWebChannel 【发布时间】:2017-11-12 18:54:43 【问题描述】:

我通过 PyQt5 在 Python 中构建了一个 GUI。我正在展示一个带有谷歌地图页面的网络浏览器。用户应该移动标记,我的程序应该处理标记的坐标。因此,我必须将坐标从 JS 传递给 Python,但我无法使其工作。

这是 html 文件:

<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=yes" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">

 function geocodePosition(pos) 
  geocoder.geocode(
    latLng: pos
  , function(responses) 
    if (responses && responses.length > 0) 
      updateMarkerAddress(responses[0].formatted_address);
     else 
      updateMarkerAddress('Cannot determine address at this location.');
    
  );


function updateMarkerStatus(str) 
  document.getElementById('markerStatus').innerHTML = str;


function updateMarkerPosition(latLng) 
  document.getElementById('info').innerHTML = [
    latLng.lat(),
    latLng.lng()
  ].join(', ');


function updateMarkerAddress(str) 
  document.getElementById('address').innerHTML = str;



var geocoder = new google.maps.Geocoder();
var map;


var goldStar = 
    path: 'M 125,5 155,90 245,90 175,145 200,230 125,180 50,230 75,145 5,90 95,90 z',
    fillColor: 'yellow',
    fillOpacity: 0.8,
    scale: 0.1,
    strokeColor: 'gold',
    strokeWeight: 1
;



function addMarker(lat, lon, city, url) 
    var newmarker = new google.maps.Marker(
        position: new google.maps.LatLng(lat, lon),
        icon: goldStar,
        map: map,
        title: city
    );
    newmarker['infowindow'] = new google.maps.InfoWindow(
            content: url
        );
    google.maps.event.addListener(newmarker, 'click', function() 
        this['infowindow'].open(map, this);
    );



function initialize() 
  var latLng = new google.maps.LatLng(40.767367, -111.848007);
  // create as a global variable
  map = new google.maps.Map(document.getElementById('mapCanvas'), 
    zoom: 11,
    center: latLng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  );
    var marker = new google.maps.Marker(
    position: latLng,
    title: 'Point A',
    map: map,
    draggable: true
  );

  // Update current position info.
  updateMarkerPosition(latLng);
  geocodePosition(latLng);

  // Add dragging event listeners.
  google.maps.event.addListener(marker, 'dragstart', function() 
    updateMarkerAddress('Dragging...');
  );

  google.maps.event.addListener(marker, 'drag', function() 
    updateMarkerStatus('Dragging...');
    updateMarkerPosition(marker.getPosition());
  );

  google.maps.event.addListener(marker, 'dragend', function() 
    updateMarkerStatus('Drag ended');
    geocodePosition(marker.getPosition());
  );

//  return latLng



// Onload handler to fire off the app.
google.maps.event.addDomListener(window, 'load', initialize);

</script>
</head>
<body>
  <style>
  #mapCanvas 

    # width: 1000px;
    width: 102%;
    height: 500px;
    float: left;
    margin-left: -7px;
    margin-right: -10px;
    margin-top: -7px;
    margin-bottom: 10px;
  
  #infoPanel 
    float: center;
    margin-left: 20px;
  
  #infoPanel div 
    margin-bottom: 10px;
  
  </style>

      <font size="3" color="black" face="verdana">
  <div id="mapCanvas"></div>
  <div id="infoPanel">
    <font size="3" color="black" face="verdana">
    <!-- <b>Marker status:</b> -->
    <div id="markerStatus"><i>Click and drag the marker.</i></div>
    <font size="3" color="black" face="verdana">
    <b>Current position:</b>
    <div id="info"></div>
    <!--<b>Closest matching address:</b>-->
    <!--<div id="address"></div>-->
  </div>
</body>
</html>

这里是 Python 代码:

import sys
from PyQt5.QtWidgets import *
from GUI_tmy3 import *

class ShowMap_fun(QMainWindow):
    def __init__(self):
        super().__init__()
        self.map_ui = Ui_tmy3page()  # The name of my top level object is MainWindow
        self.map_ui.setupUi(self)
        self.map_ui.html_code.load(QtCore.QUrl.fromLocalFile('/Users/carlo/Dropbox/modules_NEW/useless.html'))


if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = ShowMap_fun()
    ex.show()
    sys.exit(app.exec_())

使用 GUI 代码:

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_tmy3page(object):
    def setupUi(self, MainWindow):
        MainWindow.setObjectName("MainWindow")
        MainWindow.resize(900, 620)
        MainWindow.setMinimumSize(QtCore.QSize(900, 620))
        MainWindow.setMaximumSize(QtCore.QSize(900, 620))
        MainWindow.setWindowTitle("")
        self.centralwidget = QtWidgets.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        self.html_code = QtWebEngineWidgets.QWebEngineView(self.centralwidget)
        self.html_code.setGeometry(QtCore.QRect(0, 0, 901, 621))
        self.html_code.setUrl(QtCore.QUrl("about:blank"))
        self.html_code.setObjectName("html_code")
        MainWindow.setCentralWidget(self.centralwidget)

        self.retranslateUi(MainWindow)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)

    def retranslateUi(self, MainWindow):
        pass

from PyQt5 import QtWebEngineWidgets

我知道最简单的方法是使用 QWebChannel。我找到了一个示例 here,但我无法适应我的情况。

有什么建议吗?

【问题讨论】:

【参考方案1】:

为了让工作更有条理,我将 javascript 代码分离到一个名为 useless.js 的新文件中。

你应该做的是创建一个QWebChannel对象,在页面上设置它并注册对象,你还必须创建一个接收信息的槽:

class ShowMap_fun(QMainWindow):
    def __init__(self):
        super().__init__()
        self.map_ui = Ui_tmy3page()  # The name of my top level object is MainWindow
        self.map_ui.setupUi(self)

        channel = QtWebChannel.QWebChannel(self.map_ui.html_code.page())
        self.map_ui.html_code.page().setWebChannel(channel)
        channel.registerObject("jshelper", self)

        self.map_ui.html_code.load(QtCore.QUrl.fromLocalFile(QtCore.QDir.current().filePath("useless.html")))

    @QtCore.pyqtSlot(float, float)
    def markerMoved(self, lat, lng):
        print(lat, lng)

然后你必须将qwebchannel.js文件添加到.html

useless.html

<html>
<head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=yes"/>
    <script type="text/javascript" src="./qwebchannel.js"></script>
    <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
    <script type="text/javascript" src="useless.js"></script>
</head>
[...]

代码js中必须获取对象:

useless.js

var jshelper;

new QWebChannel(qt.webChannelTransport, function (channel) 
    jshelper = channel.objects.jshelper;
);

[...]

google.maps.event.addListener(marker, 'drag', function () 
    updateMarkerStatus('Dragging...');
    updateMarkerPosition(marker.getPosition());
    jshelper.markerMoved(marker.position.lat(), marker.position.lng());
);

完整的例子可以在以下link找到

【讨论】:

感谢@eyllanesc 的示例!以类似的方式,我一直试图让来自 Python 的 PyQt5.QtCore.pyqtProperty 可供 JS 访问,但它一直提示属性“没有通知信号并且不是恒定的,HTML 中的值更新将被破坏!”。关于如何正确实现这样一个可以从 Python 和 JS 读写的属性,你有什么提示吗? 完整的示例链接已损坏。可以更新一下吗? 我们可以在同一个html中使用两个new QQWebChannel(qt.webChannelTransport, ...吗? @eyllanesc Cuz,我不想在setInterval 中运行一个对象,在.onload() 中运行一个对象。并且两者都使用不同的python方法。 @Pythoncoder 我不懂你,那个回调只是为了获取QObject,我想你很困惑

以上是关于如何使用 QWebChannel 将信息从 JS 传递到 Python的主要内容,如果未能解决你的问题,请参考以下文章

Linux + Qt : QWebEngineView + QWebChannel 与 JS 交互传递信息

如何设置 QWebChannel JS API 以在 QWebEngineView 中使用?

如何在 Qt 中使用 QWebChannel 发送 QJsonObject

如何注册一个类以在 Qt 的 QWebChannel 信号中使用它

消除 QWebChannel 属性通知器信号警告

使用 QWebChannel 时未定义的属性和返回类型