试图让我了解 AngularJS 指令。我需要将一个完整的对象从我的主控制器传递给指令。请参阅下面的代码和 jsfiddle:http: //jsfiddle.net/graphicsxp/Z5MBf/4/
<body ng-app="myApp">
<div ng-controller="MandatCtrl">
<div person myPerson="mandat.person"></div>
<span>{{mandat.rum}}</span>
<span>{{mandat.person.firstname}}</span>
</div>
和脚本:
var myApp = angular.module("myApp", []);
myApp.controller("MandatCtrl", function ($scope) {
$scope.mandat = { rum: "15000", person: { id: 1408, firstname: "sam" } };
});
myApp.directive("person", function () {
return {
scope: {
myPerson: "="
},
template: 'test: <div ng-model="myPerson"><input type="text" ng-model="firstname" /></div>'
}
});
好的,绑定适用于mandat.rum 和mandat.person.firstname。
但是,我试图将 mandat.person 传递给指令,但它不起作用。我知道我一定做错了什么,问题是什么?:)