# Async/Await 是对 Promise 的进一步简化,让程序看起来像是同步运行一样
- @swtc/lib 已内置支持 promise, 下面是对 jingtum-lib 操作
- 工作于 playground 目录
- 安装 jingtum-lib 和 bluebird
$ npm install jingtum-lib
$ npm install bluebird
- async/await
const JLIB = require("jingtum-lib")
const BLUEBIRD = require("bluebird")
BLUEBIRD.promisifyAll(JLIB)
const Remote = JLIB.Remote
const remote = new Remote()
// 我们现在对于每个有回调的函数就拥有相应的Async函数, 最常见
// await必须运行于async函数中
var someFunction = async () => {
try {
let server_info = await remote.connectAsync()
// 此处等待返回结果,看起来像是同步,但不阻塞
console.log(server_info)
// 此时已经连接到服务器了
let ledger_data = await remote.requestLedger({}).submitAsync()
// 此处等待返回结果
console.log(ledger_data)
remote.disconnect()
} catch (error) {
console.log(error)
}
}
// 运行
someFunction()