guoshilong
2023-11-14 6d3a25365554f9c7c98b8a58fba7b7aa9b3f9e9f
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)
      })
  })
}