支持刷新用户编辑表单

我想知道我在编辑用户时是否需要支持刷新用户表单(共享链接)的功能吗?

The scenario:
1. Admin clicks on edit user;
2. Filled User form loads on URL my-domain.com/user/edit/3;
3. Admin refresh the page;

我是否需要支持此功能(管理员刷新页面并且用户数据仍然存在)?这是多余的吗?

Example scenario if I do not support this feature:
1. Admin clicks on edit user;
2. Filled User form loads on URL my-domain.com/user/edit;
3. Admin refreshes the page;
4. Admin being redirected back to users list;

我正在使用React,更具体的问题看起来像这样: 表单组件是否需要以道具形式接收用户,或者用户表单必须通过URL参数(userId)加载用户本身?