angularjs – ng-bind on不起作用

前端之家收集整理的这篇文章主要介绍了angularjs – ng-bind on不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用1.3.0-rc1(最新版).

我试过了:

<title ng-bind="title"></title>

<title>{{title}}</title>

但没什么.

如果我在< body>中的任何地方{{title}}有用.

我正在做:

app.main.run(function($rootScope) {
    $rootScope.$on('$routeChangeSuccess',function(event,current,prevIoUs) {
        if (current.hasOwnProperty('$$route')) {
            $rootScope.title = current.$$route.title;
        }
    });
});

我可以在模型中看到我的头衔. < title>正在发生什么?标签

通过在< html>上添加ng-app来解决此问题.标签.
原文链接:https://www.f2er.com/angularjs/141187.html

猜你在找的Angularjs相关文章