我正在一个网站上工作,该网站有一个“注册”页面,应该可以从网站的任何地方调用。
我为“用户”产品提供了以下虚拟接口和实现:
界面:
##
## located in bahmanm/sampleapp/interfaces.py
##
class ISampleAppUser(Interface):
"""
"""
执行:
##
## located in bahmanm/sampleapp/implementation/SampleAppUser.py
##
class SampleAppUser:
"""
"""
implements(ISampleAppUser)
# Note that this method is outside of the implementation class.
#
def manage_addSampleAppUser(self, id, title):
# ...
现在,暂时让我们假设index
页面上有一个链接指向以下模板(注册模板):
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns="http://xml.zope.org/namespaces/tal">
<head><title>Add a new User</title></head>
<body>
<h2>Add a user instance</h2>
<form action="#" method="POST"
tal:attributes="action python:'manage_addSampleAppUser'">
<p>Id: <input type="text" name="id"/></p>
<p>Title: <input type="text" name="title"/></p>
<input type="submit" value="Add"/>
</form>
</body>
</html>
但是,我无法为;的action
财产找到合适的价值。form
我得到的只是“找不到资源”。
老实说,我认为这是我理解 Zope 机制的问题。我真的很感激关于我应该去哪里挖掘解决方案、configure.zcml
实现或模板本身的任何提示/线索。TIA,