Моя угловая маршрутизация js не работает.
Угловая маршрутизация js не работает.
пожалуйста, найдите код ниже в разделе "Что я пробовал" и помогите.
Что я уже пробовал:
Мой index.html ниже.
<!doctype html> <table style="font-family: Arial"><tbody><tr><td colspan="2" class="header"> <h1> My Blog </h1> </td></tr><tr><td class="leftMenu"> <a href="#/home">Home</a> <a href="#/courses">Courses</a> <a href="#/students">Students</a> </td><td class="mainContent"> <ng-view> </td></tr><tr><td colspan="2" class="footer"> Website Footer </td></tr></tbody></table>
---------------------------------------------------------
var app = angular .module("Demo", ["ngRoute"]) .config(function ($routeProvider) { $routeProvider .when("/home", { template : "Templates/home.html", controller: "homeController" }) .when("/courses", { templateUrl: "Templates/courses.html", controller: "coursesController" }) }); app.controller("homeController", function($scope) { $scope.message="Welcome Sunny"; }); app.controller("coursesController", function ($scope) { $scope.courses = ["C#", "VB.NET", "ASP.NET", "SQL Server"]; });
pankaj287
А ты добавила angular.js & angular-route.js ссылки на файлы на вашем компьютере index.html страница?? Также опишите ошибку, которую вы получаете в консоли.