如何在用户注册 asp.net 样板中添加自定义字段



我正在使用aspnet样板模板。在该内置注册中,仅包含某些默认字段。如何添加新的自定义字段,以便在用户注册时也想输入该字段?

public class User : AbpUser<User>

如果我在此类中创建一个属性,它会起作用吗?

按照以下步骤操作:

对于 .NET Core 2.0 + Angular

  1. User 中创建属性。
  2. RegisterInput 中添加属性。
  3. register.component.html 中添加表单域。
  4. AccountAppServiceRegister 方法中绑定属性:

    user.MyProperty = input.MyProperty;
    

对于 .NET Core 2.0 + MVC

  1. User 中创建属性。
  2. RegisterViewModel 中添加属性。
  3. Register.cshtml 中添加表单字段。
  4. AccountControllerRegister 方法中绑定属性:

    user.MyProperty = model.MyProperty;
    

相关内容

  • 没有找到相关文章

最新更新