angular.js - ng-init与controller
为情所困
为情所困 2017-05-15 16:58:37
0
2
623
<!DOCTYPE html>
<html ng-app="app">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title></title>
    <link rel="stylesheet" href="../css/lib/bootstrap4.css">

    <script type="text/javascript" src='../js/lib/angular.js' ></script>
    <script type="text/javascript" src='js/initAndController.js'></script>
</head>

<body ng-init="foo='bar'">
    <p ng-controller="myCtrl">
        
    </p>

</body>
</html>

js

var app = angular.module('app', []);
app.controller('myCtrl', ['$scope', function($scope){
    console.log(foo)
    
}])

为什么会报错,说fooundefined?
另外下面这段代码也让我不解:

<!DOCTYPE html>
<html ng-app="app">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title></title>
    <link rel="stylesheet" href="../css/lib/bootstrap4.css">

    <script type="text/javascript" src='../js/lib/angular.js' ></script>
    <script type="text/javascript" src='js/directive.js'></script>
</head>

<body ng-controller="myCtrl">

    <my-directive />

    <h1 ng-init="greet='hello world'">
        The greeting is {{greet}}
    </h1>
</body>
</html>

js

var app = angular.module('app', []);
app.controller('myCtrl', ['$scope', function($scope){
    
    
}])
app.directive('myDirective',function(){
    return {
        restrict : 'E',
        replace : true,
        template : '<a href="http://google.com">to Google</a>'
    }
})

为什么结果只有一个to Google而没有h1标签里的文字?

为情所困
为情所困

全員に返信(2)
仅有的幸福

最初のもの: console.log(foo)
これは console.log($scope.foo) である必要があります
2 つ目: replace:true 属性の意味を理解してください

いいねを押す +0
仅有的幸福

foo が未定義であるというエラーが報告されるのはなぜですか?

ng-init が ng-controller="myCtrl" の外側で定義されているためです。すべてのコントローラーが初期化されるまで ng-init は実行されないと思いますので、現時点では foo は未定義です

Google の結果が 1 つだけあるのに、h1 タグにテキストがないのはなぜですか?

この質問は明確ではありません。

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート