1
私は$ onサービスを使用して私のコントローラに渡したい2つのフィールドを持っています。 これは、今、私が他のコントローラに両方の変数を渡す必要が最初のjs
$scope.submitFilterForm = function(query){
var query='test';
var deviceType= filterStateService.getActiveFilterState();
messageBus.send(Message.SubmitFilterForm,query,deviceType);
}
です。他のコントローラでクエリが正しく行われていますが、デバイスの種類が未定義になっています。 私の質問は複数のパラメータを渡すことができます。
$scope.$onMessage(Message.SubmitFilterForm,function(event,data,deviceType) {
console.log("Value of data n device type is",data);
console.log("Value of data n device type is",deviceType);
}
それは感謝を働いた.. :) – ashworx
あなたは歓迎しています! –