JavaScript异步函数返回[object Promise]

时间:2019-06-08 21:33:03

标签: javascript vue.js promise electron-vue

Async函数返回[object Promise],但所需的行为返回实数值。 我可以从console.log获取值。

我想这是该函数的预期行为,但是我不知道如何修复代码。

这是使用electronic-vue和NeDB的vue.js代码。

<template>
  <div>
    {{ testNedb3('NDId6sekw6VYLmnc')  //this is a test by adding specific id }}
  </div>
</template>

<script>
import Promise from 'bluebird'
export default {
  methods: {
    dbFindAsync2: function (db, opt) {
      return new Promise(function (resolve, reject) {
        db.find(opt, function (err, doc) {
          if (err) {
            reject(err)
          } else {
            resolve(doc)
          }
        })
      })
    },
    testNedb3: async function (id) {
      const flattenMemAsync = function (arr) {
        return new Promise(function (resolve) {
          Array.prototype.concat.apply(
            [],
            arr.map(function (arr) {
              resolve(arr.members)
            })
          )
        })
      }
      const filterByNameIdAsnc = function (arr) {
        return new Promise(function (resolve) {
          const result = arr.filter(function (member) {
            return member.nameId === id
          })
          resolve(result)
        })
      }
      this.dbFindAsync2(
        this.$db, { 'members.nameId': id }, { 'members': 1, _id: 0 }
      ).then(function (res) {
        const docs = res
        flattenMemAsync(docs).then(function (res) {
          const flatMembers = res
          filterByNameIdAsnc(flatMembers).then(function (res) {
            console.log('result', res)
            console.log('result_firstname', res[0].firstName)
            return res
          })
        })
      })
    },

this.$db正在从NeDB获取数据,并且该数据是二维数组,因此我试图通过flattenMemAsync来对数组进行展平,并通过filterByNameIdAsnc来删除意外的数据。

console.log('result', res)返回数组,console.log('result_firstname', res[0].firstName)返回字符串。

我已将调用代码从{{ testNedb3('NDId6sekw6VYLmnc') }}更改为{{ {{ testNedb3('NDId6sekw6VYLmnc').then(value => {return value}) }},但结果相同。

也更改为{{ await testNedb3('NDId6sekw6VYLmnc').then(value => {return value}) }},但出现错误“解析错误:异步函数外无法使用关键字'await'。”

任何评论都可以帮助我。 谢谢。

1 个答案:

答案 0 :(得分:2)

不要在视图中调用异步方法。

将方法标记为异步时,它将返回一个promise,因此,返回一个promise并将其标记为异步是毫无意义的。

您应该等待created或其他合适的lifecycle hook的异步方法或承诺,然后将结果保存在组件的数据中,然后呈现该数据。

另外,请看一下vue-promised插件。