What is the limitation of "Application Parameters"?
Hi there,
I have 2 Thing properties:
- testJson (Base Type JSON): { "id": 1, "first_name": "Spenser", "last_name": "Cowton", "email": "scowton0@blog.com", "gender": "Male", "ip_address": "60.10.239.62", "Car VIN": "2G4WS52J831457375", "Car make": "Dodge", "Car model": "Ram Van 2500", "Car model year": 1995 }
- testString (Base Type: string): { "id": 1, "first_name": "Spenser", "last_name": "Cowton", "email": "scowton0@blog.com", "gender": "Male", "ip_address": "60.10.239.62", "Car VIN": "2G4WS52J831457375", "Car make": "Dodge", "Car model": "Ram Van 2500", "Car model year": 1995 }
Bindings in Vuforia Studio are:
| property | widget | application parameters |
| testJson | ['label-json'].text | testJson |
| testString | ['label-string'].text | testString |
When I console.log $scope.view.wdg['wdg-id'].text and $scope.app.params['params'] respectively.
Widgets can deliver data flawlessly, but Application Parameters do not.
console.log($scope.app.params.testJson)
>>> [object object] (type: string)
console.log($scope.app.params.testString)
>>> undefined (type: undefined)
So, what's the limitation of Application Parameters? What is the Best Practice of Application Parameters?
Help doesn't provide much help.
https://support.ptc.com/help/vuforia/studio/en/#page/Studio_Help_Center%2FAppAndDevicePropPanel.html
Thanks in advance.

