在相同的触发条件下,我需要返回两个响应,分别称为A响应和B响应。我尝试编写一个伪代码来解释我的问题。
def trigger_condition(request):
return A_response, B_response
或
def trigger_condition(request):
return A_response, then callback another_function
def another_function(request):
return B_response