Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
i have created a thing with javascript in the snipert service CreateThing ,but then i want to set the thing just created Propertis ,the thing create success,but the properties created failed.there is nothing error shown in Application ,this my script
Solved! Go to Solution.
You need a restart after the EnableThing and before setting the property:
Things[thingName].RestartThing();
Also you need to create the Thing with the prepared parameters ( before (EnableThing) ):
Resources["EntityServices"].CreateThing(params);
can not set Properties success too
You need a restart after the EnableThing and before setting the property:
Things[thingName].RestartThing();
Also you need to create the Thing with the prepared parameters ( before (EnableThing) ):
Resources["EntityServices"].CreateThing(params);
thank you so much ,your answer solve my problem perfectly!