ng-init无法进行初始化

时间:2016-05-02 08:56:18

标签: javascript angularjs

我刚刚开始学习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>

3 个答案:

答案 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) {

        });