22

我使用@vue/cli-service 4.2 创建了 vue 和电子应用程序,因为我面临可选链接的问题。

我不能用?用于验证条件,例如 (@babel/plugin-proposal-optional-chaining)

例如。a?.b?.c 这意味着它检查天气 a 是否存在然后检查 b 否则返回 false 与角度模板表达式相同。

任何人都知道如何在 vuejs 中配置可选链接。

4

6 回答 6

8

一个快速更新是 Vue 3 捆绑了对可选链接的支持。

要进行测试,您可以尝试编译以下 Vue 组件代码。

<template>
  <div id="app" v-if="user?.username">
    @{{ user?.username }} - {{ fullName }} <strong>Followers: </strong>
    {{ followers }}
    <button style="align-self: center" @click="followUser">Follow</button>
  </div>
</template>

<script lang="ts">
import { defineComponent } from 'vue'

export default defineComponent({
  name: 'App',
  props: {
    test: Object
  },
  data() {
    return {
      followers: 0,
      user: {
        id: 1,
        test: {},
        username: '_sethAkash',
        firstName: undefined,
        lastName: 'Seth',
        email: 'sethakash007@gmail.com',
        isAdmin: true
      }
    }
  },
  computed: {
    fullName(): string {
      //
      return `${this?.test?.firstName} ${this?.user?.lastName}`
    }
  },
  methods: {
    followUser: function () {
      this.followers += 1
    }
  },
  watch: {
    followers(newFollowerCount, oldFollowerCount) {
      if (oldFollowerCount < newFollowerCount) {
        console.log(`${this?.user?.username} has gained a follower!`)
      }
    }
  },
  mounted() {
    this.followUser()
  }
})
</script>
于 2020-11-26T18:23:42.263 回答
7

根据this comment on an issue here

您可以创建一个全局 mixin 并使用该eval函数来评估表达式。

例子:

Vue.mixin({
  methods: {
    $evaluate: param => eval('this.'+param)
  }
});

在模板中:

<template>
  <p>{{ $evaluate('user?.name') }}</p>
</template>

他们还补充说,它可能并不完美:

虽然它仍然无法替代真正的运算符,特别是如果你有很多次出现它


编辑

如上所述,使用eval可能会带来一些意想不到的问题,我建议您改用计算属性。

在证监会:

<template>
  <p>{{ userName }}</p>
</template>

<script>
export default {
  data(){
    return { 
      user: {
        firstName: 'Bran'
      }
    }
  },
  computed: {
    userName(){
      return this.user?.firstName
    }
  }
}
</script>
于 2020-05-17T18:54:13.883 回答
6

试试vue-template-babel-compiler

它用于Babel启用Optional Chaining(?.).Nullish Coalescing(??)和许多新的 ES 语法Vue.js SFC

Github 仓库:vue-template-babel-compiler

演示

演示图像

用法

1.安装

npm install vue-template-babel-compiler --save-dev

2.配置

1.Vue -CLI

Vue-CLI 的 DEMO 项目

// vue.config.js
module.exports = {
    chainWebpack: config => {
        config.module
            .rule('vue')
            .use('vue-loader')
            .tap(options => {
                options.compiler = require('vue-template-babel-compiler')
                return options
            })
    }
}

2. Nuxt.js

Nuxt.js 的 DEMO 项目

// nuxt.config.js
export default {
  // Build Configuration: https://go.nuxtjs.dev/config-build
  build: {
    loaders: {
      vue: {
        compiler: require('vue-template-babel-compiler')
      }
    },
  },
  // ...
}

详细使用请参考 REAMDE

支持Vue-CLI, Nuxt.js, Webpack,任何环境使用vue-loader v15+

于 2021-08-01T11:33:48.827 回答
1

这并不完全相同,但我认为,在这种情况下,在大多数情况下它可能会更好。

我用于Proxy魔法方法效果。您只需要调用nullsafe对象的方法,然后从那里开始,只需使用普通链接即可。

在某些版本的 VueJs 中,您不能指定默认值。它将我们的 null 安全值视为一个对象(有充分的理由),并且JSON.stringify绕过该toString方法。我可以覆盖toJSON方法,但你不能返回字符串输出。它仍然将您的返回值编码为 JSON。因此,您最终会得到引号中的字符串。

const isProxy = Symbol("isProxy");
Object.defineProperty(Object.prototype, 'nullsafe', {
  enumarable: false,
  writable: false,
  value: function(defaultValue, maxDepth = 100) {
    let treat = function(unsafe, depth = 0) {
      if (depth > maxDepth || (unsafe && unsafe.isProxy)) {
        return unsafe;
      }
      let isNullish = unsafe === null || unsafe === undefined;
      let isObject = typeof unsafe === "object";
      let handler = {
        get: function(target, prop) {
          if (prop === "valueOf") {
            return target[prop];
          } else if (typeof prop === "symbol") {
            return prop === isProxy ? true : target[prop];
          } else {
            return treat(target[prop], depth + 1);
          }
        }
      };
      let stringify = function() {
        return defaultValue || '';
      };
      let dummy = {
        toString: stringify,
        includes: function() {
          return false;
        },
        indexOf: function() {
          return -1;
        },
        valueOf: function() {
          return unsafe;
        }
      };

      return (isNullish || isObject) ? (new Proxy(unsafe || dummy, handler)) : unsafe;
    };

    return treat(this);
  }
});


new Vue({
  el: '#app',
  data: {
    yoMama: {
      a: 1
    }.nullsafe('xx'),
    yoyoMa: {
      b: 1
    }
  }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>

<div id="app">
  {{ yoMama.yoyoMa.yoMama.yoyoMa.yoMama }}
  <hr> {{ yoyoMa.nullsafe('yy').yoMama.yoyoMa.yoMama.yoyoMa }}
</div>

于 2021-05-28T17:09:20.393 回答
1
/*
 * Where to use: Use in vue templates to determine deeply nested undefined/null values
 * How to use: Instead of writing parent?.child?.child2 you can write
 *            isAvailable(parent, 'child.child2')
 * @author    Smit Patel
 * @params    {Object} parent
 *            {String} child
 * @return    {Boolean}     True if all the nested properties exist
 */
export default function isAvailable(parent, child) {
  try {
    const childArray = String(child).split('.');
    let evaluted = parent;
    childArray.forEach((x) => {
      evaluted = evaluted[x];
    });
    return !!evaluted;
  } catch {
    return false;
  }
}

利用 :

<template>
  <div>
    <span :v-if="isAvailable(data, 'user.group.name')">
      {{ data.user.group.name }}
    <span/>
  </div>
</template>
<script>
import isAvailable from 'file/path';
export default {
   methods: { isAvailable }
}
</script>
于 2021-06-28T21:28:29.847 回答
0

在搜索了许多可能性之后,我制作了一个功能来帮助我。

制作一个js文件保存辅助函数并导出

const propCheck = function (obj = {}, properties = ""){

    const levels = properties.split(".");
    let objProperty = Object.assign({}, obj);

    for ( let level of levels){
        objProperty =  objProperty[level];
        if(!objProperty) 
            return false;
    }

   return true;

}
export default propCheck;

并在 Vue 实例中全局安装此功能

Vue.prototype.$propCheck = propCheck;

在您的模板中使用后

<span>{{$propCheck(person, "name")}}</span>

或者

<span>{{$propCheck(person, "contatcs.0.address")}}</span>

或者

<span>{{$propCheck(person, "addres.street")}}</span>
于 2021-05-24T14:17:11.877 回答