Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angularjs/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
无法在iOS应用程序中保存自动填充的密码_Ios_Angularjs_Cordova_Autofill - Fatal编程技术网

无法在iOS应用程序中保存自动填充的密码

无法在iOS应用程序中保存自动填充的密码,ios,angularjs,cordova,autofill,Ios,Angularjs,Cordova,Autofill,我启用了一些功能,如:关联域和自动填充凭据提供程序。apple app site association已在我的域中配置,且AASA验证程序已验证该域 我的html如下所示: <form role="form" name="loginForm" novalidate ng-submit="$login.Authenticate()" autocomplete="on"> <input type="text" name="username" ng-model=

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

我的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>

但应用程序无法保存自动填充的密码。我错过什么了吗