当我从show调用loadhtml方法时,我总是得到未决的诺言。我如何在不回电的情况下获得价值。请在下面找到代码片段。
async loadhtml(url: string) {
var data =$.get(url).then(response=>{
console.log("response=>",response)
return response
});
return await data
}
show() {
var data = this.loadhtml(require("../../template/template1.tpl"));
console.log("html content=> ",data);
}
答案 0 :(得分:-1)
您可以将其包装在promise中并返回,以便您可以使用
调用方函数中的import random
random.seed(400) # <-- makes sure we get same randomness
choice = random.choice(words)
print(choice)
choice = random.choice(words)
print(choice)
choice = random.choice(words)
print(choice)
#Pen
#Rock
#Rock
等待它。
await