gpt4 book ai didi

angularjs - 简单的 angularjs 应用程序 View 未加载

转载 作者:行者123 更新时间:2023-12-01 08:32:35 25 4
gpt4 key购买 nike

我正在尝试通过编写最基本的应用程序来进入 angularJS。但是,我什至无法让这么少量的代码工作—— Controller 似乎没有显示任何 View 。这几乎是我在网上看到的一个流行的 angularjs 视频的直接副本。我感觉它不是什么大问题,我的猜测是我的 ng-view 可能有问题。

任何关于我做错了什么的见解都会有所帮助。

index.html

<!doctype html>
<html ng-app="fastsql">
<head>
</head>
<body>
<div class="well">
<div ng-view></div>
</div>


<script src="angular.min.js"></script>
<script src="fastsql.js"></script>

</body>
</html>

fastsql.js

// setup fastsql as angular app "module"
var fastsql = angular.module("fastsql", []);

// set routeProvider rules in .config()
fastsql.config(function($routeProvider) {

// set what views are displayed for each change in the URL.
$routeProvider
.when("/", { controller: 'loginCntl', templateURL: 'test.html' })
.otherwise({ redirectTo: '/' });

});

// controllers
fastsql.controller("loginCntl", function($scope) { $scope.message = "hey"; });

最佳答案

templateURL 应该是 templateUrl

关于angularjs - 简单的 angularjs 应用程序 View 未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16620029/

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