最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to disable autocomplete on react native paper TextInput? with autoComplete="off" render autoc

programmeradmin1浏览0评论

I am trying to disable the autoplete on the web using TextInput from react-native-paper 3.10.1

<TextInput
  name="city"
  textContentType="addressCity"
  autoComplete="off"
  mode="outlined"
/>

The autoComplete="off" is replaced with autoplete="noop" in the rendered HTML, which cause the auto plete not to be disabled.

From where does the noop e from and how can I disable the autoplete?

Reproduction

/@kopax/curious-pizza

I am trying to disable the autoplete on the web using TextInput from react-native-paper 3.10.1

<TextInput
  name="city"
  textContentType="addressCity"
  autoComplete="off"
  mode="outlined"
/>

The autoComplete="off" is replaced with autoplete="noop" in the rendered HTML, which cause the auto plete not to be disabled.

From where does the noop e from and how can I disable the autoplete?

Reproduction

https://snack.expo.io/@kopax/curious-pizza

Share Improve this question asked May 23, 2020 at 13:50 Dimitri KopriwaDimitri Kopriwa 14.5k33 gold badges117 silver badges232 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

TextInput in react-native-web API says it follows The HTML autoplete attribute, but it doesn't work. It does however seem to follow aria-autoplete.

The TextInput in react-native follows it's own API. But there's this issue that renamed the prop in react native from autoCompleteType to autoComplete. So at the time of writing the React Native docs also need to be updated.

The solution:

<TextInput
  autoComplete={ Platform.OS === 'web' ? 'none' : 'off' }

Tested in:

expo: 42.0.4
react-native: 0.63.2 (https://github./expo/react-native/archive/sdk-42.0.0.tar.gz)
react-native-web (version): 0.13.18
react: 16.13.1
Browser: Chrome 96.0.4664.110

The prop you need to pass is autoCompleteType='off'. You can find more information on the props for the react-native provided TextInput ponent (who's props React Native Paper's TextInput also extends) here. https://reactnative.dev/docs/textinput.html#autopletetype

for ios textContentType={'none'}

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论