ジャストformly-フォームのモデルの値に次の項目としてデータを追加します。あなたはvm.model.investmentsにrecivedデータを追加約束の、その後のセクションでは(私はあなたが約束を使用していると仮定)あなたしているデータをreciveされますときに我々はそのようなモデルに
vm.model = {
investments: [
{
investmentName:'abc',
investmentDate:(new Date()).toDateString(),
stockIdentifier:'',
investmentValue:'',
relationshipName:'',
complianceApprover:'',
requestorComment:''
},
{
investmentName:'haf',
investmentDate:(new Date()).toDateString(),
stockIdentifier:'',
investmentValue:'',
relationshipName:'',
complianceApprover:'',
requestorComment:''
}
]
};
を持っているかどう例に基づいて 配列 たとえば、
someService.getMyData().then(function (data) {
vm.model.investments.push(data);
}