我正在做一个带有内联编辑的表单。我在这里找到了一个例子: https ://stackoverflow.com/a/16739227/169252
我适应了我的需要。这是一些代码(使用nodejs、express和jade)。指令:
// Inline edit directive
app.directive('inlineEdit', function($timeout) {
return {
scope: {
model: '=inlineEdit',
handleSave: '&onSave',
handleCancel: '&onCancel'
},
link: function(scope, elm, attr) {
var previousValue;
scope.edit = function() {
scope.editMode = true;
previousValue = scope.model;
$timeout(function() {
elm.find('input')[0].focus();
}, 0, false);
};
scope.save = function() {
scope.editMode = false;
scope.handleSave({value: scope.model});
};
scope.cancel = function() {
scope.editMode = false;
scope.model = previousValue;
scope.handleCancel({value: scope.model});
};
},
templateUrl: 'partials/inline-edit'
};
});
控制器:
myControllers.controller('MyCtrl', ['$scope', '$http',
function MyCtrl($scope, $http) {
$scope.name = "Name";
$scope.surname = "Surname";
$scope.email = "Email";
$scope.save_user = function() {
//What do I do here??
};
指令模板 (' partials/inline-edit
'):
div(class="inline_edit_div")
input(class="inline_edit_input" type="text" on-enter="save()" on-blur="cancel()" on-esc="cancel()" ng-model="model" ng-show="editMode")
span(ng-mouseenter="showEdit = true" ng-mouseleave="showEdit = false")
span(ng-hide="editMode" ng-click="edit()")
div(class="inline_edit_text")
{{model}}
和表格本身:
div(ng-controller="MyCtrl")
form(id="user_form")
div.inline.action_buttons
button(class="buttons action_button" ng-click="save_user()") Save
div.info
div.element
label(class="form") Name
div.form(inline-edit="name")
div.element
label(class="form") Surname
div.form(inline-edit="surname")
div.info_element_bottom
label(class="form") Email
div.form(inline-edit="email")
我的问题:如此处所建议的,
如何将表单提交到服务器上的控制器?
我可以在提交时发布访问$scope
例如$scope.person
.
但是,使用 inlineEdit 指令,我正在创建继承范围 - 所以我无法弄清楚如何从我的控制器访问我的表单数据。 https://stackoverflow.com/a/13428220/169252表示您无法从父范围访问子范围。
简而言之,我如何使用 $http 提交整个表单(最好我想了解如何在没有传统 POST 的情况下重新加载整个页面)?控制器中的$scope.save_user
被调用,但从那里我不知道更多。