javascript - angularjs directive 传参数进去不能正常显示

查看:102
本文介绍了javascript - angularjs directive 传参数进去不能正常显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

  <body ng-app="app" controller="testCtrl">
      this is a test
      <div test info="harry"></div>
  </body>

<script>
    var App = angular.module('app',[])
    App.directive('test', function(){
        return {
            restrict: "A",
            scope:{
                info: "="
            },
            template: "<p>name{{info.name}}</p><p>sex{{info.sex}}</p>"
        };
    });
    App.controller('testCtrl', function($scope){
        $scope.harry = {
            name: "vincent",
            sex: "男"
        }
    });
</script>

然后名字和性别不能正常显示,百思不得其解啊

解决方案

ng-controller="testCtrl"写成了controller="testCtrl".

这篇关于javascript - angularjs directive 传参数进去不能正常显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆