検索

ホームページ  >  に質問  >  本文

angular.js - 动态修改 directive 的templateUrl 只有在controller中生效,在directive中操作不生效

<content url="{{contentUrl}}"></<content>

//在controller中调用changeContentUrl 页面模板可以更换. 但是在下方homeAction点击事件中操作url 不生效
var home = angular.module("home", [ "common" ]);

    home.controller("homeCtrl", function($scope, commonFactory) {
    
        $scope.contentUrl = "template/userInfo";
        $scope.changeContentUrl = function(contentUrl) {
             console.log(contentUrl);
            $scope.contentUrl = "adada"; 
        };
    });
    home.directive("content", function() {
        return {
            restrict : "E",
            template : "<p ng-include='getContentUrl()'></p>",
            link : function($scope, $element, $attr) {
                $scope.getContentUrl = function() {
                    return $attr.url;
                };
            }
        };
    });
home.directive("homeAction",function(commonFactory){
        return function($scope,element,attrs){
                var node =  element.find("li");
                node.on("click",function(event){
                    var url = $(event.target).attr("url");
                    $scope.contentUrl=url;
                    console.log($scope.contentUrl);
                });
            
        };
    });
迷茫迷茫2744日前501

全員に返信(1)返信します

  • 巴扎黑

    巴扎黑2017-05-15 17:08:15

    homeAction に問題があります:

    リーリー

    function(commonFactory){ はディレクティブ構成情報を返さないため、JSON を返す必要があります。

    返事
    0
  • キャンセル返事