コントローラーの下で定義された関数をWebページの任意の場所(コントローラーコンポーネントの外部)から呼び出すにはどうすればよいですか?
「取得」ボタンを押すと完全に動作します。しかし、divコントローラーの外部から呼び出す必要があります。ロジックは次のとおりです。デフォルトでは、私のdivは非表示です。ナビゲーションメニューのどこかでボタンを押すと、divがshow()され、「get」関数が実行されます。どうすればこれを達成できますか?
私のウェブページは:
<div ng-controller="MyController">
<input type="text" ng-model="data.firstname" required>
<input type='text' ng-model="data.lastname" required>
<form ng-submit="update()"><input type="submit" value="update"></form>
<form ng-submit="get()"><input type="submit" value="get"></form>
</div>
私のjs:
function MyController($scope) {
// default data and structure
$scope.data = {
"firstname" : "Nicolas",
"lastname" : "Cage"
};
$scope.get = function() {
$.ajax({
url: "/php/get_data.php?",
type: "POST",
timeout: 10000, // 10 seconds for getting result, otherwise error.
error:function() { alert("Temporary error. Please try again...");},
complete: function(){ $.unblockUI();},
beforeSend: function(){ $.blockUI()},
success: function(data){
json_answer = eval('(' + data + ')');
if (json_answer){
$scope.$apply(function () {
$scope.data = json_answer;
});
}
}
});
};
$scope.update = function() {
$.ajax({
url: "/php/update_data.php?",
type: "POST",
data: $scope.data,
timeout: 10000, // 10 seconds for getting result, otherwise error.
error:function() { alert("Temporary error. Please try again...");},
complete: function(){ $.unblockUI();},
beforeSend: function(){ $.blockUI()},
success: function(data){ }
});
};
}
get()
からMyControllerのを呼び出したいという意味ですか?