-1

I have an angular application which has a input.

Now my problem is, that the value of the input doesn't get saved in the Google Chrome Autofill Variables.

Is there a way to save the input manually into the Browsers Autofill Variables?

Thank you

BlockchainProgrammer
  • 1,333
  • 2
  • 11
  • 30

2 Answers2

0

you can install

angular-chrome-autofill-fix

module to solve this problem. install this command:

npm i angular-chrome-autofill-fix

also, you can use this link to read about this module:

https://www.npmjs.com/package/angular-chrome-autofill-fix

The important note is, maybe this module doesn't work on Ubuntu.

  • This is a fix for another problem. My issue really is, that there is no form and because of this, google chrome probably has a problem with autofill there. – BlockchainProgrammer Jun 18 '19 at 12:10
0

There is not any specific way in angular to save the autofills in chrome.

here you can check how form auto-fills works in chrome by kmote. so that you can identify what needs to do to save input.

Highlight is that the browser looks at the field's name tag and makes an educated guess at what sort of data would go there (regex matching is a good naive way to do this). Chrome is working to get some sort of standardization so that this isn't quite as hit-or-miss.

Ankit Prajapati
  • 1,722
  • 8
  • 20