gpt4 book ai didi

javascript - 我的模板没有被解析

转载 作者:行者123 更新时间:2023-11-30 08:57:17 24 4
gpt4 key购买 nike

angular.module('dodgie', []).config(function($routeProvider){
$routeProvider.when('/home', {template:'/partials/home.html', controller:dodgieCtrl }).
otherwise({redirectTo:'/home'});
});

function dodgieCtrl($scope, $location){
$scope.doSearch = function(){
if ( !$scope.newTodo.length ) {
return;
}
};
};

内容:

<div id="content" ng-view></div>

改为:

 <span class="ng-scope">/partials/home.html</span>

为什么我的部分没有被渲染?

最佳答案

它看起来像是一个拼写错误尝试 templateUrl 而不是 template:

angular.module('dodgie', []).config(function($routeProvider){
$routeProvider.when('/home', {templateUrl:'/partials/home.html', controller:dodgieCtrl }).
otherwise({redirectTo:'/home'});
});

取自docs :

  • template – {string=} – html 模板作为字符串,应由 ngView 或 ngInclude 指令使用。此属性优先于 templateUrl。
  • templateUrl – {string=} – ngView 应使用的 html 模板的路径。

关于javascript - 我的模板没有被解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12399185/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com