'use strict'; const roadKeyMap = require('./road.json') console.log(roadKeyMap); async function importIn (ctx) { try { const models = ctx.fs.dc.models; const { level } = ctx.query; const data = ctx.request.body; const roadRes = await models.Road.findAll({ where: { level } }) let preCreateArr = [] for (let d of data) { if (roadRes.some(r => r.routeCode + r.sectionNo == d['路线代码'] + d['路段序号'])) { //repeat } else { // await models.Road.create(d); } } ctx.status = 204 } catch (error) { ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); ctx.status = 400; ctx.body = { message: typeof error == 'string' ? error : undefined } } } module.exports = { importIn, };