https://raw.github.com/currencybot/open-exchange-rates/master/latest.jsonから提供された通貨データを使用したい
最初のテストとして、これの縮小版をインラインオブジェクトとして作成しました。
var obj = [
{
"disclaimer": "This data is collected from various providers and provided free of charge for informational purposes only, with no guarantee whatsoever of accuracy, validity, availability, or fitness for any purpose; use at your own risk. Other than that, have fun! More info: http://openexchangerates.org/terms/",
"license": "Data collected from various providers with public-facing APIs; copyright may apply; not for resale; no warranties given. Full license info: http://openexchangerates.org/license/",
"timestamp": 1339036116,
"base": "USD",
"rates": {
"EUR": 0.795767,
"GBP": 0.645895,
"JPY": 79.324997,
"USD": 1
}
}];
私ができるようにしたいのは、たとえば「EUR」を基準としてjsonオブジェクトをクエリ/ grep /フィルタリングし、結果として「0.795767」の値を持つ「rate」という変数を返すようにすることだけです。
JQueryのgrep関数とfilter関数を見てきましたが、オブジェクトの「レート」セクションだけを分離して、必要なレートを取得する方法がわかりません。