Search code examples
angularjschecklist-model

Using the output from Checklist-Model in Angular application


I am using the Checklist-Model directive in my application and it is returning a value like below:

{"sets":[{"title":"342","objectId":"1j9p9R1xzM"},{"title":"bkjkjb","objectId":"esHE2WIEkN"}]}

My question is how can I use this output. I tried to pass it into JSON.parse, but this seems to be causing an error.


Solution

  • I was confused about the syntax for getting the input. The example from the model needs to be set like follows:

    selectedSets.sets[0]
    

    not

    selectedSets[0]