モーダルウィンドウを実装してみました。オンラインでサンプルを見つけて実装しました。
ここにモーダルウィンドウのサンプルファイルを追加しました。これは正常に機能しています。
私がまさに必要としているのは、モデル ウィンドウを開いているときにこの関数を呼び出すことです。
$scope.callType = {};
$scope.dataFormDialog = function (id) {
$scope.callType.id = id;
exDialog.openPrime({
scope: $scope,
template: '_Product.html',
controller: 'productController',
width: '450px',
//animation: false,
//grayBackground: false
});
};
ここでは、sampleController から _Product.html と productController を呼び出しています。
モーダルウィンドウ そのときの sampleController から呼び出します。
sampleController の $scope 値を productController に渡す方法は?
誰でもこれについて私を助けることができますか? ...