Solved
How to find if a Thing name already exists
dear expert
ThingName already exists or not how to find any services , any script share
requirement:
I write JavaScript code ,how to compare already thingName present or not
dear expert
ThingName already exists or not how to find any services , any script share
requirement:
I write JavaScript code ,how to compare already thingName present or not
Hello,
There is a way to see if a thing with a specific name already exists.
Here is some code to achieve this:
result = 'thing doesnt exist';
let thingName = 'YourThingName';
if (Things[thingName]) {
result = 'thing exist';
}This code will check if there is a thing with the name that you have already exists or not.
Regards,
Jens
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.