2

我的问题可能与此相同,但建议的答案似乎没有帮助(或者我没有正确理解它):Pylons FormEncode @validate decorator pass parameters into re-render action

我有一个简单的表单,它采用所需的查询字符串(id)值,将其用作隐藏的表单字段值,并验证发布的数据。控制器如下所示:

class NewNodeForm(formencode.Schema):
  parent_id = formencode.validators.Int(not_empty = True)
  child_name = formencode.validators.String(not_empty = True)

def newnode(self, id):
  c.parent_id = id
  return render('newnode.html')

@validate(schema=NewNodeForm(), form='newnode')
def createnode(self):
  parentId = self.form_result.get('parent_id')
  childName = self.form_result.get('child_name')
  nodeId = save_the_data(parentId, childName)
  return redirect_to(controller = 'node', action = 'view', id = nodeId)

形式非常基本:

<form method="post" action="/node/createnode">
  <input type="text" name="child_name">
  <input type="hidden" value="${c.parent_id}" name="parent_id">
  <input name="submit" type="submit" value="Submit">
</form>

如果验证通过,一切正常,但如果失败,newnode则无法调用,因为id没有传回。它抛出TypeError: newnode() takes exactly 2 arguments (1 given)。简单地定义 asnewnode(self, id = None)解决了这个问题,但我不能这样做,因为逻辑需要 id 。

这看起来很简单,但我错过了什么?

4

2 回答 2

1

如果您在 newnode 中使用 id arg,我的偏好是在其相关的 createnode 函数中使用相同的 arg。调整您的帖子 url 以使用 id,并且您不需要隐藏 parent_id,因为它现在是 url 的一部分。

<form method="post" action="/node/createnode/${request.urlvars['id']}">
  <input type="text" name="child_name">
  <input name="submit" type="submit" value="Submit">
</form>
于 2011-01-22T14:54:14.797 回答
0

当验证失败时,validate装饰器会newnode使用修改后的request对象调用您,但不得更改所有 GET/POST 参数

def newnode(self, id=None):
  c.parent_id = id or request.params.get('parent_id')
  return render('newnode.html')
于 2011-01-22T12:15:07.713 回答