Nxt

在javascript中獲取NXT資產對象的函式是什麼?

  • November 29, 2015

我想獲取一個 NXT 資產的對象及其變數。檢索 nxt 資產對象的功能是什麼?

您可以使用 NRS.sendRequest(""

以下程式碼獲取有問題的資產對象。

NRS.sendRequest(“getAsset”, {“asset”:asset}, function(response) { //do stuff with response}, false)

NRS.sendRequest("getAsset", {   
 "asset": <*Your Asset ID here*>
}, function(response) {         
 if (response && response.asset) {
   console.log(response);        
 }, false                          
});                             

您會從 chrome 的控制台日誌中得到以下響應,如下所示:

<http://prntscr.com/7zm5fh>

在此處輸入圖像描述

引用自:https://bitcoin.stackexchange.com/questions/38906