如何将Google API执行到Nativescript-Vue中?

时间:2018-06-26 08:58:31

标签: vue.js nativescript

任何人都可以帮助我如何将Google API用于Nativescript-Vue。拜托,谢谢!

1 个答案:

答案 0 :(得分:0)

您可以尝试使用axios。 如果您通过axios击中此api

  

https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=Washington,DC&destinations=New+York+City,NY&key=YOUR_API_KEY

您将获得这样的数据-

{
"destination_addresses" : [ "New York, NY, USA" ],
"origin_addresses" : [ "Washington, DC, USA" ],
"rows" : [
  {
     "elements" : [
        {
           "distance" : {
              "text" : "225 mi",
              "value" : 361715
           },
           "duration" : {
              "text" : "3 hours 49 mins",
              "value" : 13725
           },
           "status" : "OK"
        }
     ]
  }
],
"status" : "OK"
}

因此,如果您熟悉vuejs,使用vuejs就可以轻松查看显示数据。

  

快乐编码:)