I am trying to port PySide application version #1 to PySide2 and struggle to find the solution for porting following code snippet:
class AppManager(QtCore.QObject):
'''
methods of AppObject will be available from javascript
'''
def __init__(self, webview):
QtCore.QObject.__init__(self)
class WebView(QWebEngineView):
def __init__(self, parent=None):
QWebEngineView.__init__(self, parent)
self.setPage(WebEnginePage(self))
def contextMenuEvent(self, event):
pass
class AppWindow(QMainWindow):
def __init__(self):
QMainWindow.__init__(self)
self.view = WebView(self)
self.page = self.view.page()
self.app_manager = AppManager(self.view)
self.page.mainFrame().addToJavaScriptWindowObject('app_manager', self.app_manager)
# ERROR in above line !!!
I can't find in documentation where I have to find possible fix
You have to use QWebChannel, for that you have to download qwebchannel.js (link leads to qwebchannel.js for Qt 5.12, for different versions change github branch).
In the following code I show an example:
main.py
index.html