如何使用 JSON.stringify 获取变量并将值传递给 API
How to get variable and pass value to API using JSON.stringify
我需要使用JSON.stringify将这些值传递给一个API并且我需要获取对象中的变量。
API 接收的对象需要看起来完全像这样:
{
"sessionInformation": "{\"emailAddress\" : \"the value\",\"firstName\" : \"the name\", \"question\" : \"the text\"}"
}
我正在尝试这个,但我不确定如何在该上下文中连接变量
const email = some.value,
const name = some.value,
const text = some.value,
const raw = JSON.stringify({
sessionInformation:
'{"emailAddress" : email,"firstName" : name, "question" : text}',
});
我该如何解决这个问题?谢谢
您还需要对内部对象进行字符串化
const email = "Email value";
const name = "Name value";
const text = "Text value";
const raw = JSON.stringify({
sessionInformation: JSON.stringify({
emailAddress: email,
firstName: name,
question: text
}),
});
console.log(raw)
我需要使用JSON.stringify将这些值传递给一个API并且我需要获取对象中的变量。 API 接收的对象需要看起来完全像这样:
{
"sessionInformation": "{\"emailAddress\" : \"the value\",\"firstName\" : \"the name\", \"question\" : \"the text\"}"
}
我正在尝试这个,但我不确定如何在该上下文中连接变量
const email = some.value,
const name = some.value,
const text = some.value,
const raw = JSON.stringify({
sessionInformation:
'{"emailAddress" : email,"firstName" : name, "question" : text}',
});
我该如何解决这个问题?谢谢
您还需要对内部对象进行字符串化
const email = "Email value";
const name = "Name value";
const text = "Text value";
const raw = JSON.stringify({
sessionInformation: JSON.stringify({
emailAddress: email,
firstName: name,
question: text
}),
});
console.log(raw)