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?
-
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
1 Answer
Reset to default 8In 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>