无法保存密码以在iOS Angular应用中自动填充

时间:2019-07-15 12:31:56

标签: ios angularjs cordova autofill

我已启用以下功能:关联的域和自动填充凭据提供程序。在我的域中配置了apple-app-site-association,并且AASA Validator已经验证了该域。

我的html看起来像这样:

<form role="form" name="loginForm" novalidate
      ng-submit="$login.Authenticate()" autocomplete="on">
    <input type="text" name="username" ng-model="model.username" 
           class="form-control"
           placeholder="{{'and_msg_enterUsername'|translate}}"
           ng-required="true" 
           maxlength="50" autocomplete="username" />

    <input type="password"
           ng-attr-type="{{ $login.showPassword ? 'text' : 'password' }}"
           ng-change="$login.ischanged = true;"  
           name="password" class="form-control"
           placeholder="{{'and_msg_enterPassword'|translate}}"
           ng-model="model.password" 
           ng-required="true" maxlength="255"
           autocomplete="current-password" />
</form>

但是该应用无法保存自动填充密码。我想念什么吗?

0 个答案:

没有答案