Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. 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!