chenyao
2025-03-19 3f1a8f29ad67e632b53cd7844b671fbf9d910f58
1
2
3
4
5
6
7
8
9
10
11
import axios from 'axios'
 
export function parseJsonFile (url: string) {
  return new Promise((resolve, reject) => {
    axios.get(url)
      .then(function (response) {
        console.log(response.data)
        resolve(response.data)
      })
  })
}