I have an angular app deployed on Google App Engine (python).
Whenever I try to access controller variables on View using {{}} notation, nothing happens.
Controller
$scope.abc ="ABC"
On view
<h2>{{abc}}</h2>
This works if I run my app on local without app engine. but after deployment same code does not work.
I have googled this but didn't get anything. What is the issue with {{}} ?