2

我是 Angular 的新手,但我已经用谷歌搜索了几个小时,似乎无法弄清楚我做错了什么......我要解决的问题是能够在部分完成后执行一些 jQuery已经加载。我发现了这篇文章:http ://blog.ruedaminute.com/2012/02/angular-js-applying-jquery-to-a-loaded-partial/ ,它解释了如何使用 ng:include 而不是 ng:view,但它不起作用 - 没有包含模板,更不用说正在执行的 onload 了。

索引.html:

<!DOCTYPE html>
<html ng-app="shorelinerealtors">
<head>
    <meta charset="UTF-8">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script src="/lib/angular.js"></script>
    <script src="/lib/angular-resource.js"></script>
    <script src="/js/app.js"></script>
    <script src="/js/controllers.js"></script>
    <link rel="stylesheet" href="/css/style.css">
    <title>Shoreline Realtors</title>
</head>
<body>
<!--It works fine using ng:view, but of course no onload option-->
<!-- <ng:view></ng:view> -->
<!--This apparently does nothing... no hello world, no alert -->
<ng:include src="$service('$route').current.template" scope="$service('$route').current.scope" onload="init()"></ng:include>
</body>
</html>

住宅.html

<h2>{{hello}}</h2>

控制器.js

function ResidentialListCtrl($scope) {
    $scope.hello = "Hello World!";
    this.init = function() {
        alert("hello");
    };

}

应用程序.js

angular.module('shorelinerealtors', ['listingsServices']).
    config(['$routeProvider', function($routeProvider) {
        $routeProvider.
            when('/listings/residential', {templateUrl: '/partials/residential.html', controller: ResidentialListCtrl}).
            otherwise({redirectTo: '/listings/residential'});
    }]);

更新:我为此创建了一个 jsfiddle:http: //jsfiddle.net/xSyZX/7/。它适用于 ngView,但不适用于 ngInclude。我需要做些什么来在全局范围内定义 $service 吗?

4

1 回答 1

2

如果您想在加载/处理页面时使用 JQuery 来影响页面上的元素,那么执行此操作的“角度方式”将是创建一个自定义指令,让 jQuery 为您工作。控制器不应该进行 DOM 操作,并且 onload 功能实际上是为该包含设置的“业务”逻辑。

这是一个指令示例,该指令在处理后立即将一些 JQuery 应用于某个元素:

app.directive('moveRightOnClick', function() {
    return {
       restrict: 'A',
       link: function(scope, elem, attr, ctrl) {
           //elem is a jquery object if JQuery is present.
           elem.click(function() {
              $(this).animate({ 'left': '+=20' }, 500);
           });
       }
    };
});

这就是你如何使用它。

<div move-right-on-click>Click Me</div>

如果那在您的包含的 html 中,则 jquery 的内容将由指令自动连接。

于 2012-10-23T21:13:45.930 回答