私はngDialogを初めて使用しています。サービスから受け取った応答データをngDialogに表示しようとしています。ポップアップが表示され、静的なデータを表示できますが、 :$ scope.myData、動的な値が入力されません、どこに間違っているのかを教えてください... 以下はコードです。応答データをngDialogに表示できません
popup.html:
<div>hi how r u</div>
<div>I am fine thank u</div>
コントローラーコード:
paymentSearchApp.controller('paymentSearchCtrl', function (getXmlService,paymentSearchService,paymentSearchResponse,paymentDetailService,auditHistoryService,errorLogService,accountingEntryService, notesService,$scope, $q, ngDialog) {
getXmlService.getXmlDatafunction().then(
function(response){
$scope.xmldata = response;
console.log($scope.xmldata);
ngDialog.open({
template: 'showXml.html',
className: 'ngdialog-theme-default',
data: $scope.xmldata
});
}, function(error){}
)
});
私はあなたの答え、その作業に本当に感謝しています!!! –