Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! 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!