如何在鳗鱼中使用多处理
How to use multiprocessing in eel
我的程序逻辑如下:
用户点击按钮(在 UI 上)
->多处理计数器的触发方法(从js到python)
-> 开始多处理计数器循环(在 python 中)
-> 显示计数器编号到 UI(从 python 到 html 通过 js)
我的问题是为什么它不能在 UI 上显示柜台号码?
以下是我的代码:
python:
import eel,time
from multiprocessing import Process
count = 0
eel.init('static')
@eel.expose
def do_something():
global p
p = Process(target=run_forever)
p.start()
print('start a process.')
print(f'The process is alive or not:{p.is_alive}')
def run_forever():
global count
while 1:
print(time.time())
time.sleep(1)
count = count + 1
eel.js_counter(count)
@eel.expose
def end_do_something():
global p
p.terminate()
p.terminate()
print('stop process')
p.join()
print(f'The process is alive or not:{p.is_alive}')
if __name__ == '__main__':
eel.start('index.html',size=(600,400))
index.html:
<h1>Hello World</h1>
<p ></p>
<b></b>
<form>
<input type="text" id="myText" required/>
<input type="submit" onclick="return input_val()" value="print text">
</form>
<button class="call_python" onclick="btn_index()">Call_python start timing</button>
<a href="another_page.html">go to another page</a>
<script type="text/javascript" src="./index.js"></script>
<script type="text/javascript" src="/eel.js"></script>
another_page.html:
<h1>Hello World</h1>
<p>This is home</p>
<input type="button" onclick="change_input_val()" value="change text">
<input type="button" onclick="end_counter()" value="end counter">
<a href="index.html">go back to index</a>
<script type="text/javascript" src="./another_page.js"></script>
<script type="text/javascript" src="/eel.js"></script>
index.js:
async function btn_index(){
await eel.do_something()();
}
eel.expose(js_counter);
function js_counter(count){
sessionStorage.setItem("counter", count);
document.querySelector('p').innerHTML = count
}
function input_val(){
document.querySelector('b').innerHTML = document.getElementById("myText").value;
sessionStorage.setItem("test", document.getElementById("myText").value);
return false;
}
window.onload = function (){
document.querySelector('b').innerHTML = sessionStorage.getItem('test');
document.querySelector('p').innerHTML = sessionStorage.getItem('counter');
}
another_page.js:
function change_input_val(){
let a = sessionStorage.getItem('test');
a += 'testing';
sessionStorage.setItem("test", a);
}
async function end_counter(){
await eel.end_do_something()();
}
环境:
- OS: Windows 10 1909
- 浏览器:Chrome
- 版本:鳗鱼 0.14.0
- Python 3.8.7 32 位
问题:
如果我阻止多处理程序,它就可以工作!! (显示计数器的数量)
但是我想使用多处理来调用计数器。
谁能帮忙解决这个问题,在UI上不显示,但我想显示,请
谢谢!!
请记住,当您使用多处理时,您是在启动一个具有单独内存的单独进程 space。对象和变量没有以任何方式连接。如果需要交流,需要用一个Queue
或者一个Pipe
.
一般来说,当您可以让另一个进程完成大量工作,然后 return 通过队列向母舰发出一些信号时,多处理效果最好。
我的程序逻辑如下: 用户点击按钮(在 UI 上)
->多处理计数器的触发方法(从js到python)
-> 开始多处理计数器循环(在 python 中)
-> 显示计数器编号到 UI(从 python 到 html 通过 js)
我的问题是为什么它不能在 UI 上显示柜台号码?
以下是我的代码:
python:
import eel,time
from multiprocessing import Process
count = 0
eel.init('static')
@eel.expose
def do_something():
global p
p = Process(target=run_forever)
p.start()
print('start a process.')
print(f'The process is alive or not:{p.is_alive}')
def run_forever():
global count
while 1:
print(time.time())
time.sleep(1)
count = count + 1
eel.js_counter(count)
@eel.expose
def end_do_something():
global p
p.terminate()
p.terminate()
print('stop process')
p.join()
print(f'The process is alive or not:{p.is_alive}')
if __name__ == '__main__':
eel.start('index.html',size=(600,400))
index.html:
<h1>Hello World</h1>
<p ></p>
<b></b>
<form>
<input type="text" id="myText" required/>
<input type="submit" onclick="return input_val()" value="print text">
</form>
<button class="call_python" onclick="btn_index()">Call_python start timing</button>
<a href="another_page.html">go to another page</a>
<script type="text/javascript" src="./index.js"></script>
<script type="text/javascript" src="/eel.js"></script>
another_page.html:
<h1>Hello World</h1>
<p>This is home</p>
<input type="button" onclick="change_input_val()" value="change text">
<input type="button" onclick="end_counter()" value="end counter">
<a href="index.html">go back to index</a>
<script type="text/javascript" src="./another_page.js"></script>
<script type="text/javascript" src="/eel.js"></script>
index.js:
async function btn_index(){
await eel.do_something()();
}
eel.expose(js_counter);
function js_counter(count){
sessionStorage.setItem("counter", count);
document.querySelector('p').innerHTML = count
}
function input_val(){
document.querySelector('b').innerHTML = document.getElementById("myText").value;
sessionStorage.setItem("test", document.getElementById("myText").value);
return false;
}
window.onload = function (){
document.querySelector('b').innerHTML = sessionStorage.getItem('test');
document.querySelector('p').innerHTML = sessionStorage.getItem('counter');
}
another_page.js:
function change_input_val(){
let a = sessionStorage.getItem('test');
a += 'testing';
sessionStorage.setItem("test", a);
}
async function end_counter(){
await eel.end_do_something()();
}
环境:
- OS: Windows 10 1909
- 浏览器:Chrome
- 版本:鳗鱼 0.14.0
- Python 3.8.7 32 位
问题:
如果我阻止多处理程序,它就可以工作!! (显示计数器的数量)
但是我想使用多处理来调用计数器。
谁能帮忙解决这个问题,在UI上不显示,但我想显示,请
谢谢!!
请记住,当您使用多处理时,您是在启动一个具有单独内存的单独进程 space。对象和变量没有以任何方式连接。如果需要交流,需要用一个Queue
或者一个Pipe
.
一般来说,当您可以让另一个进程完成大量工作,然后 return 通过队列向母舰发出一些信号时,多处理效果最好。