From aa4bf1c21a98b77509f1726bdb20bf65450bc6c2 Mon Sep 17 00:00:00 2001 From: yutent Date: Wed, 6 Sep 2023 15:28:37 +0800 Subject: [PATCH] Update custom_bridge --- custom_bridge.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/custom_bridge.md b/custom_bridge.md index 5d08b7b..1bd4ffb 100644 --- a/custom_bridge.md +++ b/custom_bridge.md @@ -1 +1,21 @@ -Welcome to the Wiki. \ No newline at end of file +> 内置的`JS API`不满足需求时, 可自定义桥接信号处理 + + +```python +from webengine.gtk3 import WebEngine, create_bridge + +web = WebEngine() +bridge = create_bridge() # 无需任何额外参数 + +def bridge_handler(event, params): + # event 为前端 js 触发的事件名, 这里可根据不同事件名做不同的处理 + # params 为一个 dict 字典对象, 是前端 js 传递给后端的参数 + error = None + output = None + # ... + return (error, output) # 这里必须有返回值, 且须为一个集合, 第1元素为错误信息, 当不为None时, 前端 js的调用结果, 会触发 Promise.reject() + +web.use(bridge, bridge_handler) +web.load() + +``` \ No newline at end of file