我正在为名片制作一张订单,上面有一个按钮,可以添加另一张名片。我希望按钮创建另一个名片表单,并从表单中的所有数据与另一个视图的控制器共享。
我有两个模板连接到各自的控制器。
代码示例:
order.js
.factory('Cards', function () {
var Cards = []
return Cards
})
.controller('TestCtrl', function ($scope, Cards) {
$scope.person0={name: '', email:'', description:''}
$scope.person1={name: '', email:'', description:''}
if (Cards.length < 2) {
Cards.push($scope.person0);
Cards.push($scope.person1);
}
}
order.html
<md-toolbar layout='column' layout-align='center' ng-repeat="card in Cards">
<md-button layout-margin layout-padding flex='100' class='md-raised md-primary'>
<h1>{{ card.name }}</h1>
<h1>{{ card.email }}</h1>
<h1>{{ card.description }}</h1>
</md-button>
<div layout='column' layout-align='center center' >
<input type="text" style="color:black;" flex='' ng-model="card.name">
<input type="text" style="color:black;" flex='' ng-model="card.email">
<input type="text" style="color:black;" flex='' ng-model="card.description">
</div>
</md-toolbar>
about.js
.controller('AboutCtrl', function ($scope, Cards) {
$scope.person0=Cards[0];
$scope.person1=Cards[1];
});
about.html
<div ng-repeat="card in Cards">
<md-toolbar layout='column' layout-align='center'>
<md-button layout-margin layout-padding flex='100' class='md-raised md-primary'>
<h1>{{card.name}}</h1>
<h1>{{card.email}}</h1>
<h1>{{card.description}}</h1>
</md-button>
</md-toolbar>
<md-content>
</md-content>
</div>
我希望order.html的表单数据显示在confirm.html
上两个视图都会记录卡片集合,但不会显示ng-repeat模板。
答案 0 :(得分:0)
慢下来仔细看看。
在about.html
中,您似乎想要循环显示卡片。
<div ng-repeat="card in Cards">
但在about.js
中,每张卡都被分配到范围。
$scope.person0=Cards[0]; // no reference in template
要解决此问题,请将卡片放在about.js
范围内。
$scope.Cards = Cards