我有这个 :
<div id="StopDialog" title="Stop Service">
<form ng-submit="stopService()">
<p>Why do you want to stop this service?</p>
<input type="text" ng-model="stopReason" />
<input type="submit" value="Stop" />
</form>
</div>
html 中的表单应该调用这个函数:
$scope.stopService = function () {
$("#dvProccessing").center();
$("#dvProccessing").show();
console.log($scope.stopReason);
$http({
type: "POST",
url: "StopService?ServiceName=" + clickedService[1] + "&ServerName=" + clickedService[2] + "&Reason=" + $scope.stopReason,
success: function (result) {
$("#dvProccessing").hide();
if (!result.IsSuccess) {
alert(result.Message);
}
},
error: function () { $("#dvProccessing").hide(); }
});
};
我知道 ng-submit 指令没有调用 stopService 函数,因为控制台日志没有显示用户使用表单输入的 $scope.reason 模型以及应该在函数运行时显示的处理 div 也是没有出现。
对此的任何帮助将不胜感激。