{"id":74347,"date":"2020-01-17T12:20:07","date_gmt":"2020-01-17T06:50:07","guid":{"rendered":"https:\/\/www.vskills.in\/certification\/tutorial\/?p=74347"},"modified":"2024-04-12T14:23:26","modified_gmt":"2024-04-12T08:53:26","slug":"reactjs-and-file-input-tag","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/","title":{"rendered":"ReactJS and file input Tag"},"content":{"rendered":"<p>In HTML, an &lt;input type=&#8221;file&#8221;&gt; lets the user choose one or more files from their device storage to be uploaded to a server or manipulated by JavaScript via the File API.<\/p>\n<p>&lt;input type=&#8221;file&#8221; \/&gt;<\/p>\n<p>Because its value is read-only, it is an uncontrolled component in React. It is discussed together with other uncontrolled components later in the documentation.<\/p>\n<p><strong>Handling Multiple Inputs<\/strong><\/p>\n<p>When you need to handle multiple controlled input elements, you can add a name attribute to each element and let the handler function choose what to do based on the value of event.target.name.<\/p>\n<p>For example:<\/p>\n<p>class Reservation extends React.Component {<\/p>\n<p>constructor(props) {<\/p>\n<p>super(props);<\/p>\n<p>this.state = {<\/p>\n<p>isGoing: true,<\/p>\n<p>numberOfGuests: 2<\/p>\n<p>};<\/p>\n<p>this.handleInputChange = this.handleInputChange.bind(this);<\/p>\n<p>}<\/p>\n<p>handleInputChange(event) {<\/p>\n<p>const target = event.target;<\/p>\n<p>const value = target.type === &#8216;checkbox&#8217; ? target.checked : target.value;<\/p>\n<p>const name = target.name;<\/p>\n<p>this.setState({<\/p>\n[name]: value<\/p>\n<p>});<\/p>\n<p>}<\/p>\n<p>render() {<\/p>\n<p>return (<\/p>\n<p>&lt;form&gt;<\/p>\n<p>&lt;label&gt;<\/p>\n<p>Is going:<\/p>\n<p>&lt;input<\/p>\n<p>name=&#8221;isGoing&#8221;<\/p>\n<p>type=&#8221;checkbox&#8221;<\/p>\n<p>checked={this.state.isGoing}<\/p>\n<p>onChange={this.handleInputChange} \/&gt;<\/p>\n<p>&lt;\/label&gt;<\/p>\n<p>&lt;br \/&gt;<\/p>\n<p>&lt;label&gt;<\/p>\n<p>Number of guests:<\/p>\n<p>&lt;input<\/p>\n<p>name=&#8221;numberOfGuests&#8221;<\/p>\n<p>type=&#8221;number&#8221;<\/p>\n<p>value={this.state.numberOfGuests}<\/p>\n<p>onChange={this.handleInputChange} \/&gt;<\/p>\n<p>&lt;\/label&gt;<\/p>\n<p>&lt;\/form&gt;<\/p>\n<p>);<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<p>Note how we used the ES6 computed property name syntax to update the state key corresponding to the given input name:<\/p>\n<p>this.setState({<\/p>\n[name]: value<\/p>\n<p>});<\/p>\n<p>It is equivalent to this ES5 code:<\/p>\n<p>var partialState = {};<\/p>\n<p>partialState[name] = value;<\/p>\n<p>this.setState(partialState);<\/p>\n<p>Also, since setState() automatically merges a partial state into the current state, we only needed to call it with the changed parts.<\/p>\n<p><strong>Controlled Input Null Value<\/strong><\/p>\n<p>Specifying the value prop on a controlled component prevents the user from changing the input unless you desire so. If you\u2019ve specified a value but the input is still editable, you may have accidentally set value to undefined or null.<\/p>\n<p>The following code demonstrates this. (The input is locked at first but becomes editable after a short delay.)<\/p>\n<p>ReactDOM.render(&lt;input value=&#8221;hi&#8221; \/&gt;, mountNode);<\/p>\n<p>setTimeout(function() {<\/p>\n<p>ReactDOM.render(&lt;input value={null} \/&gt;, mountNode);<\/p>\n<p>}, 1000);<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In HTML, an &lt;input type=&#8221;file&#8221;&gt; lets the user choose one or more files from their device storage to be uploaded to a server or manipulated by JavaScript via the File API. &lt;input type=&#8221;file&#8221; \/&gt; Because its value is read-only, it is an uncontrolled component in React. It is discussed together with other uncontrolled components later&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[8528],"tags":[8595],"class_list":["post-74347","page","type-page","status-publish","hentry","category-reactjs","tag-reactjs-and-file-input-tag"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>ReactJS and file input Tag - Tutorial<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ReactJS and file input Tag - Tutorial\" \/>\n<meta property=\"og:description\" content=\"In HTML, an &lt;input type=&#8221;file&#8221;&gt; lets the user choose one or more files from their device storage to be uploaded to a server or manipulated by JavaScript via the File API. &lt;input type=&#8221;file&#8221; \/&gt; Because its value is read-only, it is an uncontrolled component in React. It is discussed together with other uncontrolled components later...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T08:53:26+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/\",\"name\":\"ReactJS and file input Tag - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"datePublished\":\"2020-01-17T06:50:07+00:00\",\"dateModified\":\"2024-04-12T08:53:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ReactJS and file input Tag\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ReactJS and file input Tag - Tutorial","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/","og_locale":"en_US","og_type":"article","og_title":"ReactJS and file input Tag - Tutorial","og_description":"In HTML, an &lt;input type=&#8221;file&#8221;&gt; lets the user choose one or more files from their device storage to be uploaded to a server or manipulated by JavaScript via the File API. &lt;input type=&#8221;file&#8221; \/&gt; Because its value is read-only, it is an uncontrolled component in React. It is discussed together with other uncontrolled components later...","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T08:53:26+00:00","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/","name":"ReactJS and file input Tag - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"datePublished":"2020-01-17T06:50:07+00:00","dateModified":"2024-04-12T08:53:26+00:00","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/reactjs-and-file-input-tag\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"ReactJS and file input Tag"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/74347","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=74347"}],"version-history":[{"count":3,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/74347\/revisions"}],"predecessor-version":[{"id":75276,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/74347\/revisions\/75276"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=74347"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=74347"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=74347"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}