使用asyac awit 回显 object promise 问题

业务场景,需要给后端传一个id 回显地名,因表格回显多处地方用到,封装成公共方法。 出现以下情况,有能帮忙指导下问题点吗

img

img

是可以打印出来的,
但是在页面回显 object promise

img

async 函数的返回值是promise,
调用getRegionNames(id),要么使用await要么使用then

await  getRegionNames(id)
getRegionNames(id).then(ret => console.log(ret))

已经retrue出来了,直接调用不行?