Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Pyramid 包目录中,如果我创建一个名为的文件somefunction.py并且我想使用 $.post 调用此函数,我将指定哪个 URL 来调用此函数?
somefunction.py
如果我有一个名为aviewcreated in的视图函数views.py,我可以通过简单地将 $.post url 引用为/aview/.
aview
views.py
/aview/
(脚本文件位于静态文件夹中)
在这两种情况下,您都必须编写正确的路由配置,将视图(必须包含您要调用的函数)映射到给定的 url。您甚至还有一个 xhr 参数来进一步自定义请求 [1]。我应该澄清一下,我更像是一个调度员而不是一个遍历人,所以我的回答适用于那种配置风格
[1] http://docs.pylonsproject.org/projects/pyramid/1.0/api/config.html#pyramid.config.Configurator.add_route