laput
laput

Reputation: 41

angularjs routing template not working

below code works fine in stackoverflow console, but not on my browser. BAsicall ngRoute not working for me.Appreciate your help. New to angularJS.

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-route.js"></script>

<body ng-app="myApp">

<p><a href="#/">Main</a></p>

<a href="#banana">Banana</a>
<a href="#tomato">Tomato</a>

<p>Click on the links to change the content.</p>

<p>The HTML shown in the ng-view directive are written in the template property of the $routeProvider.when method.</p>

<div ng-view></div>

<script>
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
    $routeProvider
    .when("/", {
        template : <h1>Main</h1><p>Click on the links to change this content</p>
    })
    .when("/banana", {
        template : <h1>Banana</h1><p>Bananas contain around 75% water.</p>
    })
    .when("/tomato", {
        template : <h1>Tomato</h1><p>Tomatoes contain around 95% water.</p>
    });
});
</script>

</body>
</html>

Upvotes: 1

Views: 345

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222522

You need to enclose the templates with quotes,

var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
    $routeProvider
    .when("/", {
        template :"<h1>Main</h1><p>Click on the links to change this content</p>"
    })
    .when("/banana", {
        template : "<h1>Banana</h1><p>Bananas contain around 75% water.</p>"
    })
    .when("/tomato", {
        template : "<h1>Tomato</h1><p>Tomatoes contain around 95% water.</p>"
    });
});

WORKING DEMO

Upvotes: 1

Related Questions