ding.js 269 B

12345678910111213
  1. import Router from 'koa-router'
  2. import axios from 'axios'
  3. import { ding } from './urlConfig.js'
  4. const router = Router()
  5. // 主内容
  6. router.get('/ding', async (ctx, next) => {
  7. let response = await axios.get(ding)
  8. ctx.body = response.data
  9. })
  10. export default router