I am trying to include a live currency converter into my ionic application but cannot seem to find much information on how to go about this. Does anyone have any useful links or information i could use?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
To convert currencies there are many different services.
Here a service that allows to convert currencies http://fixer.io/.
To convert two currencies you have to make a GET:
GET http://api.fixer.io/latest?symbols=USD,CHF
Result (json):
{
"base":"EUR",
"date":"2017-04-18",
"rates":{
"CHF":1.0686,
"USD":1.0682
}
}
Now use http object to call the service.
标签:
ionic-framework