-1

我正在尝试考虑如何将 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
   ]
}

在这种情况下,我试图将价格与定价、支付到付款、合同到合同期限等联系起来。我正在尝试找到一种方法来自己创建一个 Web 应用程序,而不是对其进行硬编码。

提前致谢!

4

1 回答 1

0

您可以使用具有键关系的对象。

relation = {
    price :'pricing',
    paid: 'payments',
    contract: 'contract period',
    begindate: 'start',
    enddate: 'stop'
};
于 2019-03-20T10:11:02.490 回答