PowerApps 门户--> 创建记录后(插入表单)将该记录显示为编辑表单

PowerApps Portal--> After Record is created (Insert Form) show that record as Edit Form

我有一个帐户实体插入表单。 一旦用户创建记录,我想移动到另一个页面并显示与编辑表单相同的记录。

有没有人知道实现这个的方法?

您可以通过多种方式执行此操作。我所做的是使用 Navigate() 转到新屏幕,然后将上下文变量传递给新编辑屏幕。

假设您在按钮上使用 OnSelect() 来调用 SubmitForm(),您可以通过 OnSuccess() 属性 进行 Navigate() 调用表格.

Navigate() 内,您只需传递所需的任何数据,以便下一个屏幕将其正确绑定到编辑表单。这是 UpdateContextRecord 可选参数。您可以让编辑表单从上下文变量中获取其值。

这里也是在屏幕之间传递变量

您应该能够使用 OnSuccess 表单提交将用户重定向到所需页面。

On success: Select one of the following options:

Show success message: Requires a message to be displayed to the user on successful submission of the form. You can also select Hide form on success to hide the form upon successful submission.

Redirect to webpage: Redirects the user to the selected webpage in the portal. You must select a webpage from the Redirect to webpage list.

Redirect to URL: Redirects the user to the specified URL. You must enter a URL in the Redirect to URL field.

Read more

开箱即用配置有帮助!!!

"Entity Form" 条记录中有一个名为 "Append Record ID to Query String" 的字段。这是配置在表单提交后将记录的id传递给页面。此屏幕截图显示在经典界面的重定向部分