最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Verify if content key Json has exist using Vue - Stack Overflow

programmeradmin2浏览0评论

I want to know how to check if "novalue" exist For example:

{
    name: "maria",
    city_id: "novalue"
    ....
}

How i do this in Vue? Do it in <div v-if="condition"> or function?

I want to know how to check if "novalue" exist For example:

{
    name: "maria",
    city_id: "novalue"
    ....
}

How i do this in Vue? Do it in <div v-if="condition"> or function?

Share Improve this question edited Oct 12, 2017 at 15:24 sandrooco 8,78611 gold badges55 silver badges99 bronze badges asked Oct 12, 2017 at 14:12 user8563382user8563382 4
  • just decode it with JSON.parse and test the existence of the value in the JS object – Kaddath Commented Oct 12, 2017 at 14:14
  • send me an example – user8563382 Commented Oct 12, 2017 at 14:15
  • JSON is a textual notation for data exchange. (More here.) If you're dealing with JavaScript source code, and not dealing with a string, you're not dealing with JSON. – T.J. Crowder Commented Oct 12, 2017 at 14:16
  • its using Vue i can do it in if condition in the div – user8563382 Commented Oct 12, 2017 at 14:19
Add a ment  | 

1 Answer 1

Reset to default 8

In case you want to/can use ES7 features:

const containsKey = (obj, key ) => Object.keys(obj).includes(key);

Implementation example:

const someCoolObject = {name: 'Foo', lastName: 'Bar'};

const hasName = containsKey(someCoolObject, 'name');
const hasNickName = containsKey(someCoolObject, 'hasNickName');

console.log(hasName, hasNickName); // true, false

For Vue:

Component:

{
    methods: {
        containsKey(obj, key ) {
            return Object.keys(obj).includes(key);
        }
    },
    puted: {
        hasName() {
            return this.containsKey(this.someObject, 'name');
        }
    }
}

Template:

<div v-if="hasName"></div>
发布评论

评论列表(0)

  1. 暂无评论