码迷,mamicode.com
首页 > 其他好文 > 详细

dojo框架用hitch实现函数与上下文的绑定

时间:2014-09-14 11:34:37      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   cti   log   on   c   html   

dojo框架:http://dojotoolkit.org/


<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>dojo框架绑定函数与上下文</title>
    <script  src = "dojo/dojo/dojo.js"  ></script>
</head>
<body>

<script>

    require(["dojo/_base/lang"], function(lang){
        var theAccumulator = {
            total: 0,
            clear: function () {
            },
            clear: function () {
                this.total = 0;
            },
            add: function (x) {
                this.total += x;
            },
            getResult: function () {
                return this.total;
            }
        };
        theAccumulator.clear();
        theAccumulator.add(1);
        theAccumulator.add(2);

        function printResult(func) {
            console.log(func());
        }
        printResult(lang.hitch(theAccumulator , "getResult")) ;//输出3
    } );


</script>
</body>
</html>


dojo框架用hitch实现函数与上下文的绑定

标签:http   io   ar   sp   cti   log   on   c   html   

原文地址:http://my.oschina.net/itfanr/blog/313339

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