Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在Django中,信号可以用作回调函数吗?换句话说,信号的“发送者”是否可以通过 ? 的返回值使用它从另一个应用程序收集数据send()?
send()
是的。
两者都send()返回send_robust()一个元组对[(receiver, response), ... ]列表,表示调用的接收函数列表及其响应值。
send_robust()
[(receiver, response), ... ]
请注意,这是一个相当非正统的机制;如果需要函数的返回值,直接调用即可。