gpt4 book ai didi

python - 传递多个参数返回 'Response' (python)

转载 作者:行者123 更新时间:2023-12-02 11:33:51 25 4
gpt4 key购买 nike

我正在 Angular 中工作,并且正在使用 Http 请求和响应。是否可以在“响应”中发送多个参数。

Angular 文件:

this.http.get("api/agent/applicationaware").subscribe((data:any)...

Python 文件:

def get(request):
...
return Response(serializer.data)

我想在响应中发送多个参数。喜欢

return Response(serializer.data,obj.someothervalue)

你能帮我解决这个问题吗?预先感谢:)

最佳答案

您可以返回一个字典

return Response({'serializer_data': serializer.data, 'some_other_value': obj.someothervalue})

或者您可以将someothervalue附加到serializer.data

data = serializer.data
data['someothervalue'] = obj.someothervalue
return Response(data)

如果 obj.someothervalue 也是一个字典,那么您可以合并两个字典:

data = serializer.data.copy()
data.update(obj.someothervalue)
return Response(data)

关于python - 传递多个参数返回 'Response' (python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59983556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com