- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在测试我使用 rest api 制作的应用程序时,我发现了这种我不理解的行为。
让我们从重现类似的错误开始,如下所示 -
在文件 call.py
-
请注意,此文件包含以视觉方式显示自身的代码,例如一个永远运行的 GUI。在这里,我只是向您展示一个表示,并故意让它引发一个异常来向您展示问题。发出 get 请求然后尝试将结果解析为 json 将引发 JSONDecodeError
。
import requests
from time import sleep
sleep(3)
uri = 'https://google.com'
r = requests.get(uri)
response_dict = r.json()
因为我想将其作为守护进程运行,所以我使用以下技巧将此进程与启动它的终端分离 -
在文件 start.py
-
import subprocess
import sys
subprocess.Popen(["python3", "call.py"])
sys.exit(0)
然后我执行python3 start.py
它显然解耦了流程,因为如果没有异常,视觉表现就会完美运行。
但是,如果出现异常,我会立即在终端中看到此输出,即使我在调用 python3 start.py
-
$ python3 start.py
$ Traceback (most recent call last):
File "call.py", line 7, in <module>
response_dict = r.json()
File "/home/walker/.local/lib/python3.6/site-packages/requests/models.py", line 896, in json
return complexjson.loads(self.text, **kwargs)
File "/usr/lib/python3/dist-packages/simplejson/__init__.py", line 518, in loads
return _default_decoder.decode(s)
File "/usr/lib/python3/dist-packages/simplejson/decoder.py", line 370, in decode
obj, end = self.raw_decode(s)
File "/usr/lib/python3/dist-packages/simplejson/decoder.py", line 400, in raw_decode
return self.scan_once(s, idx=_w(s, idx).end())
simplejson.errors.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
现在,我明白所有异常都必须在程序本身中处理。在这个奇怪的问题之后我已经这样做了,但我不清楚的是为什么一开始会发生这种情况?
如果我退出终端并重新启动终端,则不会发生这种情况(在回溯的情况下,视觉表现会卡住,并且任何终端上都没有预期的输出)
为什么解耦过程会这样?
注意:解耦对我来说是势在必行的。 GUI 作为后台或守护进程运行并且生成它的终端必须从它中解放出来。
最佳答案
通过“解耦”,我假设您的意思是您希望 stdout/stderr 转到 /dev/null
?假设这就是你的意思,那不是你告诉你的代码要做的
来自 docs :
stdin, stdout and stderr specify the executed program’s standard input, standard output and standard error file handles, respectively. Valid values are
PIPE
,DEVNULL
, an existing file descriptor (a positive integer), an existing file object, andNone
.With the default settings of
None
, no redirection will occur; the child’s file handles will be inherited from the parent.
因此你可能想做:
from subprocess import Popen, DEVNULL
Popen(["python3", "call.py"], stdin=DEVNULL, stdout=DEVNULL, stderr=DEVNULL)
根据 OP 的评论,我认为他们可能会使用 GNU screen
或 tmux
之类的工具。像这样的终端多路复用器允许您创建一个虚拟终端,您可以在需要时断开连接并重新连接。这些答案参见 https://askubuntu.com/a/220880/106239和 https://askubuntu.com/a/8657/106239分别有tmux
和screen
的例子
关于python - 从终端解耦的过程仍然输出 Traceback 到终端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53179244/
我是一名优秀的程序员,十分优秀!