gpt4 book ai didi

javascript - 从 URL 打印 JSON 字符串

转载 作者:行者123 更新时间:2023-11-30 15:13:13 25 4
gpt4 key购买 nike

我正在使用 ajax 从 URL 解析 JSON 数据。我需要将解析后的数组捕获到一个变量中。我该怎么做?谢谢

function rvOffices() {
$.ajax({
url:'https://api.greenhouse.io/v1/boards/roivantsciences/offices',
type:'GET',
data: JSON.stringify(data),
dataType: 'text',
success: function( data) {
// get string
}
});
}
rvOffices();
var rvOfficesString = // resultant string

最佳答案

您可以使用 JSON.parse(data) 将所需的输出转换为 JSON,然后使用 .object[array_index] 分别为:

function rvOffices() {
$.ajax({
url: 'https://api.greenhouse.io/v1/boards/roivantsciences/offices',
type: 'GET',
dataType: 'text',
success: function(data) {
var json_result = JSON.parse(data);
//console.log(json_result); // The whole JSON
console.log(json_result.offices[0].name);
}
});
}
rvOffices();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

您也不需要传递任何 data,因为您正在执行 GET 请求。

希望对您有所帮助! :)

关于javascript - 从 URL 打印 JSON 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44834420/

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