我将 RPyC 用于客户端-服务器应用程序。
当我调用exposed_change() 方法时,我尝试更改exposed_variable 的值。我收到“UnboundLocalError:分配前引用的局部变量‘exposed_variable’”错误。
但是,如果我将exposed_variable 设为全局(在我尝试修改它之前,就像在这个例子中一样),我会得到“NameError: name 'exposed_variable' is not defined”。
我错过了什么?
这是我的服务器:
from rpyc.utils import server
import rpyc
import time
class DoStuffService(rpyc.Service):
exposed_variable = 1
def exposed_change(self):
#global exposed_variable
exposed_variable = exposed_variable + 1
if __name__ == '__main__':
protocol_config = dict(instantiate_custom_exceptions=True, import_custom_exceptions=True)
server.ThreadedServer(DoStuffService, hostname='localhost', port=8888, auto_register=False,protocol_config=protocol_config, backlog=500).start()
这是我的客户:
import rpyc, sys
import time
def rpyc_call():
conn = rpyc.connect('localhost', 8888)
a = 1
while a:
conn.root.change()
nr=conn.root.variable
print("Nr is ", nr)
time.sleep(10)
if __name__ == '__main__':
rpyc_call()
谢谢你。我在等你的建议...