- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经构建了(在@EmielZuurbier 的帮助下)一个发票模板,它向 Quickbase 发出 API 调用。 API 响应是分页的。如何将分页响应解析为单个表?
{
"data": [
{
"15": {
"value": "F079427"
},
"19": {
"value": 50.0
},
"48": {
"value": "(S1)"
},
"50": {
"value": "2021-03-01"
},
"8": {
"value": "71 Wauregan Rd, Danielson, Connecticut 06239"
}
},
{
"15": {
"value": "F079430"
},
"19": {
"value": 50.0
},
"48": {
"value": "(S1)"
},
"50": {
"value": "2021-03-01"
},
"8": {
"value": "7 County Home Road, Thompson, Connecticut 06277"
}
},
{
"15": {
"value": "F079433"
},
"19": {
"value": 50.0
},
"48": {
"value": "(S1)"
},
"50": {
"value": "2021-03-16"
},
"8": {
"value": "12 Bentwood Street, Foxboro, Massachusetts 02035"
}
}
],
"fields": [
{
"id": 15,
"label": "Project Number",
"type": "text"
},
{
"id": 8,
"label": "Property Adress",
"type": "address"
},
{
"id": 50,
"label": "Date Completed",
"type": "text"
},
{
"id": 48,
"label": "Billing Codes",
"type": "text"
},
{
"id": 19,
"label": "Total Job Price",
"type": "currency"
}
],
"metadata": {
"numFields": 5,
"numRecords": 500,
"skip": 0,
"totalRecords": 766
}
}
以下是我使用的完整 javascript 代码
const urlParams = new URLSearchParams(window.location.search);
//const dbid = urlParams.get('dbid');//
//const fids = urlParams.get('fids');//
let rid = urlParams.get('rid');
//const sortLineItems1 = urlParams.get('sortLineItems1');//
//const sortLineItems2 = urlParams.get('sortLineItems2');//
let subtotalAmount = urlParams.get('subtotalAmount');
let discountAmount = urlParams.get('discountAmount');
let creditAmount = urlParams.get('creditAmount');
let paidAmount = urlParams.get('paidAmount');
let balanceAmount = urlParams.get('balanceAmount');
let clientName = urlParams.get('clientName');
let clientStreetAddress = urlParams.get('clientStreetAddress');
let clientCityStatePostal = urlParams.get('clientCityStatePostal');
let clientPhone = urlParams.get('clientPhone');
let invoiceNumber = urlParams.get('invoiceNumber');
let invoiceTerms = urlParams.get('invoiceTerms');
let invoiceDate = urlParams.get('invoiceDate');
let invoiceDueDate = urlParams.get('invoiceDueDate');
let invoiceNotes = urlParams.get('invoiceNotes');
const formatCurrencyUS = function (x) {
return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(x);
}
let subtotalAmountFormatted = formatCurrencyUS(subtotalAmount);
let discountAmountFormatted = formatCurrencyUS(discountAmount);
let creditAmountFormatted = formatCurrencyUS(creditAmount);
let paidAmountFormatted = formatCurrencyUS(paidAmount);
let balanceAmountFormatted = formatCurrencyUS(balanceAmount);
document.getElementById("subtotalAmount").innerHTML = `${subtotalAmountFormatted}`;
document.getElementById("discountAmount").innerHTML = `${discountAmountFormatted}`;
document.getElementById("creditAmount").innerHTML = `${creditAmountFormatted}`;
document.getElementById("paidAmount").innerHTML = `${paidAmountFormatted}`;
document.getElementById("balanceAmount").innerHTML = `${balanceAmountFormatted}`;
document.getElementById("clientName").innerHTML = `${clientName}`;
document.getElementById("clientStreetAddress").innerHTML = `${clientStreetAddress}`;
document.getElementById("clientCityStatePostal").innerHTML = `${clientCityStatePostal}`;
document.getElementById("clientPhone").innerHTML = `${clientPhone}`;
document.getElementById("invoiceNumber").innerHTML = `${invoiceNumber}`;
document.getElementById("invoiceTerms").innerHTML = `${invoiceTerms}`;
document.getElementById("invoiceDate").innerHTML = `${invoiceDate}`;
document.getElementById("invoiceDueDate").innerHTML = `${invoiceDueDate}`;
document.getElementById("invoiceNotes").innerHTML = `${invoiceNotes}`;
let headers = {
'QB-Realm-Hostname': 'XXXXX',
'User-Agent': 'Invoice',
'Authorization': 'XXXXX',
'Content-Type': 'application/json'
}
let body =
{
"from": "bq9dajvu5",
"select": [
15,
8,
50,
48,
19
],
"where": `{25.EX.${rid}}`,
"sortBy": [
{
"fieldId": 50,
"order": "ASC"
},
{
"fieldId": 8,
"order": "ASC"
}
],
"options": {
"skip": 0
}
}
const xmlHttp = new XMLHttpRequest();
xmlHttp.open('POST', 'https://api.quickbase.com/v1/records/query', true);
for (const key in headers) {
xmlHttp.setRequestHeader(key, headers[key]);
}
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState === XMLHttpRequest.DONE) {
console.log(xmlHttp.responseText);
let line_items = JSON.parse(this.responseText);
console.log(line_items);
const transformResponseData = (line_items) => {
const { data, fields } = line_items;
//***Return a new array with objects based on the values of the data and fields arrays***//
const revivedData = data.map(entry =>
fields.reduce((object, { id, label }) => {
object[label] = entry[id].value;
return object;
}, {})
);
//***Combine the original object with the new data key***//
return {
...line_items,
data: revivedData
};
};
const createTable = ({ data, fields }) => {
const table = document.getElementById('line_items'); //const table = document.createElement('table');
const tHead = document.getElementById('line_items_thead'); //const tHead = table.createTHead();
const tBody = document.getElementById('line_items_tbody'); //const tBody = table.createTBody();
//***Create a head for each label in the fields array***//
const tHeadRow = tHead.insertRow();
// ***Create the counts cell manually***//
const tHeadRowCountCell = document.createElement('th');
tHeadRowCountCell.textContent = 'Count';
tHeadRow.append(tHeadRowCountCell);
for (const { label } of fields) {
const tHeadRowCell = document.createElement('th');
tHeadRowCell.textContent = label;
tHeadRow.append(tHeadRowCell);
}
// Output all the values of the new data array//
for (const [index, entry] of data.entries()) {
const tBodyRow = tBody.insertRow();
// Create a new array with the index and the values from the object//
const values = [
index + 1,
...Object.values(entry)
];
// Loop over the combined values array//
for (const [index, value] of values.entries()) {
const tBodyCell = tBodyRow.insertCell();
tBodyCell.textContent = index === 5 ?
Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(value) ://value.toFixed(2) :
value;
}
}
return table;
};
const data = transformResponseData(line_items);
const table = createTable(data);
document.getElementById("line_items_div").append(table) //.innerHTML = table <-- this does not work// //document.body.append(table);
console.log(data);
}
};
xmlHttp.send(JSON.stringify(body));
这就是我想要实现的(地址仅显示为 xxx,因此该表非常适合 stackoverflow)
=== to the sum of all the numRecords for every request made until skip + numRecords === totalRecords
的记录量。
{"skip": 0}
返回 numRecords=500 {"skip": 500}
返回 numRecords=500 {"skip": 1000}
返回 numRecords=500 {"skip": 1500}
返回 numRecords=200 skip + numRecords = 1700
这等于总记录,因此循环应该停止。
最佳答案
你的想法是正确的。 API 指示使用 skip
基于 totalRecords
的请求中的功能和 numRecords
响应元数据中的值。
要进行设置,您需要三个部分。
首先,您的 headers
和 body
. headers
将保持不变,因为每个请求都需要相同。body
将获得跳过值,但是每个请求的值都不同,因此我们将在发出请求时添加该部分。
const headers = {
'QB-Realm-Hostname': 'XXXXX',
'User-Agent': 'Invoice',
'Authorization': 'XXXXX',
'Content-Type': 'application/json'
};
const body = {
"from": "bq9dajvu5",
"select": [
15,
8,
50,
48,
19
],
"where": `{25.EX.${rid}}`,
"sortBy": [
{
"fieldId": 50,
"order": "ASC"
},
{
"fieldId": 8,
"order": "ASC"
}
] // options object will be added later.
};
第二部分是重写您的请求脚本,以便我们可以传递
skip
value 并将其放入请求正文中。我确实看到你在使用
XMLHttpRequest()
,但我建议您查看较新的 Fetch API。它基本上是一样的,但有不同的,在我看来,更易读的语法。
skip
值(value)是动态的,我们建立起来
body
通过组合
body
的属性来处理请求对象,带有
options
属性,其中包含
skip
属性(property)和值(value)。
/**
* Makes a single request to the records/query endpoint.
* Expects a JSON response.
*
* @param {number} [skip=0] Amount of records to skip in the request.
* @returns {any}
*/
const getRecords = async (skip = 0) => {
const url = 'https://api.quickbase.com/v1/records/query';
// Make the request with the skip value included.
const response = await fetch(url, {
method: 'POST',
headers,
body: JSON.stringify({
...body,
"options": {
"skip": skip
}
})
});
// Check if the response went okay, if not, throw an error.
if (!response.ok) {
throw new Error(`
The getRecords request has failed:
${response.status} - ${response.statusText}
`);
}
// Decode the body of the response
const payload = await response.json();
return payload;
};
最后一部分是关于确保
getRecords
如果 API 需要更多记录,则函数会不断被调用。
data
数组组合。
/**
* Recursive function which keeps getting more records if the current amount
* of records is below the total. Then skips the amount already received
* for each new request, collecting all data in a single object.
*
* @param {number} amountToSkip Amount of records to skip.
* @param {object} collection The collection object.
* @returns {object} An object will all data collected.
*/
const collectRecords = async (amountToSkip = 0, collection = { data: [], fields: [] }) => {
try {
const { data, fields, metadata } = await getRecords(amountToSkip);
const { numRecords, totalRecords, skip } = metadata;
// The amount of collected records.
const recordsCollected = numRecords + skip;
// The data array should be merged with the previous ones.
collection.data = [
...collection.data,
...data
];
// Set the fields the first time.
// They'll never change and only need to be set once.
if (!collection.fields.length) {
collection.fields = fields;
}
// The metadata is updated for each request.
// It might be useful to know the state of the last request.
collection.metadata = metadata;
// Get more records if the current amount of records + the skip amount is lower than the total.
if (recordsCollected < totalRecords) {
return collectRecords(recordsCollected, collection);
}
return collection;
} catch (error) {
console.error(error);
}
};
现在要使用它,请调用
collectRecords
函数然后将继续发出请求,直到没有更多请求为止。此函数将返回
Promise
,所以你必须使用
then
Promise
的方法告诉您在检索到所有记录时要执行的操作。
// Select the table div element.
const tableDiv = document.getElementById('line_items_div');
// Get the records, collect them in multiple requests, and generate a table from the data.
collectRecords().then(records => {
const data = transformRecordsData(records);
const table = createTable(data);
tableDiv.append(table);
});
关于javascript - 如何使用复杂的嵌套和未命名数组解析分页的 JSON API 响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66820192/
我已经设置了 Azure API 管理服务,并在自定义域上配置了它。在 Azure 门户中 API 管理服务的配置部分下,我设置了以下内容: 因为这是一个客户端系统,我必须屏蔽细节,但以下是基础知识:
我是一名习惯 React Native 的新程序员。我最近开始学习 Fetch API 及其工作原理。我的问题是,我找不到人们使用 API key 在他们的获取语句中访问信息的示例(我很难清楚地表达有
这里有很多关于 API 是什么的东西,但是我找不到我需要的关于插件 API 和类库 API 之间的区别。反正我不明白。 在 Documenting APIs 一书中,我读到:插件 API 和类库 AP
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我正在尝试找出设计以下场景的最佳方法。 假设我已经有了一个 REST API 实现,它将从不同的供应商那里获取书籍并将它们返回给我自己的客户端。 每个供应商都提供单独的 API 来向其消费者提供图书。
请有人向我解释如何使用 api key 以及它有什么用处。 我对此进行了很多搜索,但得到了不同且相互矛盾的答案。有人说 API key 是保密的,它从不作为通信的一部分发送,而其他人则将它发送给客户端
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 4年前关闭。 Improve this
谁能告诉我为什么 WSo2 API 管理器不进行身份验证?我已经设置了两个 WSo2 API Manager 1.8.0 实例并创建了一个 api。它作为原型(prototype) api 工作正常。
我在学习 DSL 的过程中遇到了 Fluent API。 我在流利的 API 上搜索了很多……我可以得出的基本结论是,流利的 API 使用方法链来使代码流利。 但我无法理解——在面向对象的语言中,我们
基本上,我感兴趣的是在多个区域设置 WSO2 API 管理器;例如亚洲、美国和欧洲。一些 API 将部署在每个区域的数据中心内,而其他 API 将仅部署在特定区域内。 理想情况下,我想要的是一个单一的
我正在构建自己的 API,供以下用户使用: 1) 安卓应用 2) 桌面应用 我的网址之一是:http://api.chatapp.info/order_api/files/getbeers.php我的
我需要向所有用户显示我的站点的分析,但使用 OAuth 它显示为登录用户配置的站点的分析。如何使用嵌入 API 实现仪表板但仅显示我的网站分析? 我能想到的最好的可能性是使用 API key 而不是客
我正在研究大公司如何管理其公共(public) API。我想到的是拥有成熟 API 的公司,例如 Google、Facebook、Twitter 和 Amazon。 这些公司向公众公开了许多不同的 A
在定义客户可访问的 API 时,以下是首选的行业惯例: a) 定义一组显式 API 方法,每个方法都有非常狭窄和特定的目的,例如: SetUserName SetUserAge Se
这在本地 deserver 和部署时都会发生。我成功地能够通过留言簿教程使用 API 资源管理器,但现在我已经创建了自己的项目并尝试访问我编写的第一个 API,它从未出现过。搜索栏旁边的黄色“正在加载
我正在尝试使用 http://ip-api.com/ api通过我的ip地址获取经度和纬度。当我访问 http://ip-api.com/json从我的浏览器或使用 curl,它以 json 格式返回
这里的典型示例是 Twitter 的 API。我从概念上理解 REST API 的工作原理,本质上它只是针对您的特定请求向他们的服务器查询,然后您会在其中收到响应(JSON、XML 等),很棒。 但是
我能想到的最好的标题,但要澄清的是,情况是这样的: 我正在开发一种类似短 url 的服务,该服务允许用户使用他们的 Twitter 帐户“登录”并发布内容。现在这项服务可以包含在 Tweetdeck
我正在设计用于管理评论和讨论线程的 API 方案。我想有一个点 /discussions/:discussionId 当您GET 时,它会返回一组评论和一些元数据。评论也许可以单独访问 /discus
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭去年。 Improve this quest
我是一名优秀的程序员,十分优秀!