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.
我有一个 Dexterity 内容类型,在我更改其状态或将其转换为另一种状态后,我希望页面重定向到指定的 URL。所以我在工作流上添加了一个脚本,并在转换后触发它。在我测试它之后没有任何反应,它停留在当前内容上。
这是我的带有参数列表的脚本 - state_change:
request = container.REQUEST response = request.response response.redirect(some_url)
我的脚本有问题吗?