I have problem with outputting data from JSON file
{
"movie": {
"RowCount": 0,
"Result": [
{
"movieID": "124",
"moviename": "Hello"
},
{
"movieID": "123",
"moviename": "World"
}
]
}
}
I dont know why the {{}} statement wont work with this kind of JSON file. if the JSON File with another format like following
{
"discCount": 0,
"results":[
{
"disccode": "ABC123"
},
{
"disccode": "ABCD123"
}
]
}
it works perfect just by calling the {{variablename.disccode}}
can anybody help me please? thank you