我试图在我的网站中使用routeProvider,这是在laravel中构建的。 我有routeProvider的问题。在我的一个页面中,当用户点击它需要加载模板时,有一些选项。但是,当我点击它时,它总是会发生 这是我的代码
(function () {
var academics = angular.module('academics',['ngRoute'])
academics.controller("timeTableController",function($scope){
$scope.test="Hello world";
})
academics.config(function ($routeProvider)
{
$routeProvider
.when('/timetables',{
template:"Hello world"
})
.when('/plates',{
template:"Hello Planet"
})
.otherwise({
template:"Good Bye"
})
})
})();
这是我的刀片模板
@extends('layout.header')
@include('resources.highcharts')
@include('resources.angular')
@section('content')
<div ng-app="academics" class="col-lg-12">
<div class="col-lg-4">
<div class="col-lg-12 option-list">
<ul class="nav">
<li class="active"><a href="#timetables">Exam Timetables</a></li>
</ul>
</div>
</div>
<div class="col-lg-8">
<div class="ng-view">
</div>
</div>
</div>
@stop
在这里,当我点击时间表时,我应该在我的视图中获得Hello world,但我没有得到它。但是相同的代码在没有laravel的情况下工作。我的代码有什么问题。