如何link JSON 键值互通?
How to link JSON keys to eachother?
我正在想一个解决方案,如何 link 2 种不同的 json 格式和密钥,例如以下 2 种格式:
{
"price": [
511,
499,
419,
312
],
"paid": "OK",
"contract": "year",
"begindate": "01/01/2018",
"enddate": "01/01/2019"
}
和
{
"payments": "OK",
"contract period": "year",
"start": "01/01/2018",
"stop": "01/01/2019",
"pricing": [
511,
499,
419,
312
]
}
在这种情况下,我正在尝试 link 价格对价格、付款对付款、合同对合同期限等。我正在尝试自己寻找一种为此创建 Web 应用程序的方法对其进行硬编码。
提前致谢!
你可以拿一个对象与键的关系。
relation = {
price :'pricing',
paid: 'payments',
contract: 'contract period',
begindate: 'start',
enddate: 'stop'
};
我正在想一个解决方案,如何 link 2 种不同的 json 格式和密钥,例如以下 2 种格式:
{
"price": [
511,
499,
419,
312
],
"paid": "OK",
"contract": "year",
"begindate": "01/01/2018",
"enddate": "01/01/2019"
}
和
{
"payments": "OK",
"contract period": "year",
"start": "01/01/2018",
"stop": "01/01/2019",
"pricing": [
511,
499,
419,
312
]
}
在这种情况下,我正在尝试 link 价格对价格、付款对付款、合同对合同期限等。我正在尝试自己寻找一种为此创建 Web 应用程序的方法对其进行硬编码。
提前致谢!
你可以拿一个对象与键的关系。
relation = {
price :'pricing',
paid: 'payments',
contract: 'contract period',
begindate: 'start',
enddate: 'stop'
};