我是TronGrid.js和node.js的新手。当我使用 node index.js 通过cmd执行此文件时,它可以正常工作...但是,当我将同一文件作为脚本加载到 aspx文件中时,它给出了出现以下错误:
未捕获的ReferenceError:未定义require
这是我的index.js
const TRONGRID = require("trongrid");
const TRONWEB = require("tronweb");
const tronWeb = new TRONWEB({
fullHost: "https://api.shasta.trongrid.io/"
});
const tronGrid = new TRONGRID(tronWeb);
async function getTransactions() {
let options = {
onlyTo: true
};
var transactions = await tronGrid.account.getTransactions("TJqfBdPgRHbFpWz7epwq3LGzrxtNyzWTTQ", options);
console.log(transactions);
}
getTransactions();