Hi, I tried a lot of articles and answers from different questions, but no luck, I use an empty ionic project and it works on my browser with ionic.serve, there are also no errors.
{{truck}} displayed in my application, and not in the "Truck Value" value and {{truck}} not displayed constantly, it blinks as soon as I update the browser.
html <body ng-app="starter"> <div ng-controller="Ctrl"> <h2>hey {{truck}}</h2> </div> </body> js var example = angular.module('starter', ['ionic', 'ngCordova']) ... example.controller("Ctrl", function() { var truck = "Truck Value"; });
user2413453
source share