gpt4 book ai didi

json - 在 ColdFusion 中返回 JSON 数据作为响应

转载 作者:行者123 更新时间:2023-12-02 10:22:43 25 4
gpt4 key购买 nike

我正在 ICIMS API 工作。我需要在 ICIMS 服务器的 cfm 页面调用中返回 JSON 数据和 header 中的一些特定数据。

响应应该是:

响应工作流程状态更改PUSH事件到平台:

HTTP/1.1 303 See Other
Location: http://xx.xx.xx.xx:8085/selectpackage?systemHash=101
Content-Type: application/json
{
"userMessage":"Confirm or modify package.",
}

提前致谢。

答案:

> <cfset contentString = '{"userMessage": "Confirm or modify package."}'
> />
>
> <cfheader name="Location"
> value="http://xx.xx.xx.xx:8085/selectpackage?systemHash=101" />
> <cfcontent type="application/json" variable="#toBinary( toBase64( contentString ) )#" />

最佳答案

<cfheader 
statusCode = "303"
statusText = "See Other">

<cfheader
name="Location"
value="http://xx.xx.xx.xx:8085/selectpackage?systemHash=101">

<cfheader
name="Content-Type"
value="application/json">

<cfset foo = structNew()>
<cfset foo["userMessage"] = "Confirm or modify package.">

<cfoutput>#serializeJSON(foo)#</cfoutput>

关于json - 在 ColdFusion 中返回 JSON 数据作为响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29319037/

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