我刚刚开始学习angular.js,但ng-init
在我的代码中无效。我通过互联网搜索但无法找到任何答案。
这是我的代码提前感谢!!
<!DOCTYPE html>
<html lang="en">
<head>
<title>ngClassifieds</title>
</head>
<body ng-app = "ngClassifieds" ng-init="message='hello, World!'">
<h1 ng-model="message">{{ message }}</h1>
<script src="node_modules/angular/angular.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>
答案 0 :(得分:1)
在app.js中添加以下代码
var ngClassifieds=angular.module("ngClassifieds",[]);
答案 1 :(得分:0)
我认为问题在于脚本加载
<head>
<title>ngClassifieds</title>
<script src="node_modules/angular/angular.js"></script>
<script src="scripts/app.js"></script>
</head>
在标题标记
中添加脚本答案 2 :(得分:0)
Html代码
<body ng-controller="DemoCtrl" ng-app="main" ng-init="data='welcome'">
{{data}}
</body>
脚本代码
var app = angular.module('main', []);
app.controller('DemoCtrl', function ($scope) {
});