码迷,mamicode.com
首页 > Web开发 > 详细

[AngularJS] New in Angular 1.3 - bindToController

时间:2014-12-25 21:52:58      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:

If you want to use controllers, instead of a link function, you can use bindToController.

 

<!DOCTYPE html>
<html ng-app="app">
<head>
    <title>Egghead.io Tutorials</title>
    <style>body{padding:20px}</style>
    <link rel="shortcut icon" href="favicon.ico">
    <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular.js"></script>
    <script src="app.js"></script>
</head>
<body>

<note message="hello"></note>
</body>
</html>
angular.module("app", [])

    .directive("note", function note() {
        return {
            scope: {
                message: "@" //pass in a string
            },
            bindToController: true,
            controller: "NoteCtrl as note",
            template: "<div>{{note.message}}</div>"
        };
    })

    .controller("NoteCtrl", function NoteCtrl() {
        var note = this;
    });

 

技术分享

[AngularJS] New in Angular 1.3 - bindToController

标签:

原文地址:http://www.cnblogs.com/Answer1215/p/4185504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!