【发布时间】:2020-07-14 07:12:52
【问题描述】:
我是 Talend 的新手。我想将我的 api(例如:www.abc.com/villages/)数据加载到我的 mysql 数据库中。我该怎么做?
这是我的 api 数据:
{
"message": "Resource created/Updated",
"data": {
"items": [
{
"id": 256,
"name": "Abc",
"createdAt": "2020-07-09 04:06:23",
"updatedAt": "2020-07-09 04:06:23"
},
{
"id": 512,
"name": "Xyz",
"createdAt": "2020-07-09 04:06:23",
"updatedAt": "2020-07-09 04:06:23"
}
],
"page": 1,
"total": 51551,
},
"type": null
}
【问题讨论】: