VALU 데이터를 일본 엔으로 보기
데이터는 이런 식으로 표시되고 있다.
BitCoin 대원이 너무 크고 금액 환산하기 어려웠기 때문에 유루요로씨의 기사 을 참고로 변환해 보았다.
개발자 콘솔 열고 즐겁게
fetch("https://blockchain.info/ja/ticker").then(response => response.json()).then(ticker => {
var exchange = (target) => target.text(Math.round(ticker.JPY.last * target.text().replace(",", "")).toString().replace(/(\d)(?=(\d{3})+$)/g , '$1,'))
$(".user_numerical li span").filter((i, e) => $(e).text() == "BTC").each((i, e) => { $(e).text("JPY"); exchange($(e).prev()) })
$("#hint_chart a").each((i, e) => exchange($(e)))
$("#candle_chart g text").each((i, e) => { if ($(e).attr("y") == -10) { $(e).text("JPY") } else if ($(e).attr("y") == 0.5) { exchange($(e)) } })
})
돈 무서운
참고 모든 이미지는 가상의 데이터입니다.
Reference
이 문제에 관하여(VALU 데이터를 일본 엔으로 보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/bakenezumi/items/823c9e62b179d0212d0e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)