我将表单放入模态窗口(使用Angular UI Bootstrap创建)。
我的表单有以下代码:
services:
assets.packages:
synthetic: true
然后在我的控制器中我有这段代码:
<form ng-submit="processForm()" name="form2" role="form">
<input type="checkbox" ng-model="ckCS" name="ckCS" />
<button class="btn btn-primary" type="submit">ADD</button>
</form>
模态显示没有问题,但是当我尝试提交表单时,它根本不起作用。即使在控制台日志中也不显示错误。
我的模态窗口的控制器以这种方式设置:
.controller(
'ModalInstanceCtrl',
function ($scope, $modalInstance, $http, sharedProperties, items) {
$scope.processForm = function () {
//[here I've some code with http.post]
$modalInstance.close();
}
}
)
我做错了什么?