我想使用 Shield UI Chart 来访问和可视化外汇数据。我已经想出了如何做ajax的东西:
$.ajax({
url: 'http://api.apirates.com/jsonp/update',
dataType: 'jsonp',
success: function (data) {
}
)
但是我无法弄清楚如何从检索到的数据中提取所需的货币汇率。
我想使用 Shield UI Chart 来访问和可视化外汇数据。我已经想出了如何做ajax的东西:
$.ajax({
url: 'http://api.apirates.com/jsonp/update',
dataType: 'jsonp',
success: function (data) {
}
)
但是我无法弄清楚如何从检索到的数据中提取所需的货币汇率。