Reactjs: How can I print the selection item in my webpage?How to turn on/off ReactJS 'development mode'?How do you validate the PropTypes of a nested object in ReactJS?How to use radio buttons in ReactJS?ReactJS - how to use commentsHow can I access a hover state in reactjs?How to set default Checked in checkbox ReactJS?Cannot update during an existing state transitionHow to add multiple classes to a ReactJS ComponentHow to pass data from child component to its parent in ReactJS?Reactjs: How can I move item base on drop down selection
Fastest way from 8 to 7
Dedicated bike GPS computer over smartphone
What publication claimed that Michael Jackson died in a nuclear holocaust?
In The Incredibles 2, why does Screenslaver's name use a pun on something that doesn't exist in the 1950s pastiche?
Can an open source licence be revoked if it violates employer's IP?
Why is the concept of the Null hypothesis associated with the student's t distribution?
Is it a good security practice to force employees hide their employer to avoid being targeted?
If absolute velocity does not exist, how can we say a rocket accelerates in empty space?
Can you open the door or die? v2
What does BREAD stand for while drafting?
The best in flight meal option for those suffering from reflux
When to use the uncountable form of a noun?
Can I attach a DC blower to intake manifold of my 150CC Yamaha FZS FI engine?
What is Gilligan's full name?
What do you call the action of "describing events as they happen" like sports anchors do?
Why do (or did, until very recently) aircraft transponders wait to be interrogated before broadcasting beacon signals?
A life of PhD: is it feasible?
Was planting UN flag on Moon ever discussed?
How can I find out about the game world without meta-influencing it?
How to deal with an excess of white-space in a CRM UI?
Harley Davidson clattering noise from engine, backfire and failure to start
Nth term of Van Eck Sequence
Convert GE Load Center to main breaker
My mom's return ticket is 3 days after I-94 expires
Reactjs: How can I print the selection item in my webpage?
How to turn on/off ReactJS 'development mode'?How do you validate the PropTypes of a nested object in ReactJS?How to use radio buttons in ReactJS?ReactJS - how to use commentsHow can I access a hover state in reactjs?How to set default Checked in checkbox ReactJS?Cannot update during an existing state transitionHow to add multiple classes to a ReactJS ComponentHow to pass data from child component to its parent in ReactJS?Reactjs: How can I move item base on drop down selection
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
First of all, I am new in reactjs. How can I print the selection item in my webpage? This code print the output in the console but I want to print the output in the webpage screen. How can I do this?
´´´´
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state = value: 'coconut';
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
);
export default FlavorForm
´´´´
reactjs
add a comment |
First of all, I am new in reactjs. How can I print the selection item in my webpage? This code print the output in the console but I want to print the output in the webpage screen. How can I do this?
´´´´
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state = value: 'coconut';
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
);
export default FlavorForm
´´´´
reactjs
add a comment |
First of all, I am new in reactjs. How can I print the selection item in my webpage? This code print the output in the console but I want to print the output in the webpage screen. How can I do this?
´´´´
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state = value: 'coconut';
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
);
export default FlavorForm
´´´´
reactjs
First of all, I am new in reactjs. How can I print the selection item in my webpage? This code print the output in the console but I want to print the output in the webpage screen. How can I do this?
´´´´
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state = value: 'coconut';
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
);
export default FlavorForm
´´´´
reactjs
reactjs
asked Mar 25 at 0:07
Mahmudul HasanMahmudul Hasan
11
11
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Just add some html element that is bound to your "value" property, like this:
render()
return (
<div>
<h3>Flavor: this.state.value</h3>
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
</div>
);
Thanks a lot. But I want to show the results after clicking the submit button. How can I do that?
– Mahmudul Hasan
Mar 25 at 0:53
Show the results where? The state.value changes on each onChange event, so any html element that is bound to it- will show the result, regardless of the form submission. I think that your confusion comes from not understanding that React is "declarative". You can read about it here: codeburst.io/declarative-vs-imperative-programming-a8a7c93d9ad2
– sheff2k1
Mar 25 at 1:05
add a comment |
Not sure of the exact behavior you want, but you could keep a boolean that your state that shows/hides the text:
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state =
value: 'coconut',
showFlavor: false // this controls whether or not the text is shown
;
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
// console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
this.setState( showFlavor: true ); // toggle on our boolean, note that in this example it never gets set back to false
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
// text appears here only when state.showFlavor is true
<span>this.state.showFlavor ? `Your favorite flavor is: $this.state.value` : ''</span>
</form>
);
Thanks. This is what I expecting as output. Thanks a lot
– Mahmudul Hasan
Mar 25 at 16:36
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55329780%2freactjs-how-can-i-print-the-selection-item-in-my-webpage%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just add some html element that is bound to your "value" property, like this:
render()
return (
<div>
<h3>Flavor: this.state.value</h3>
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
</div>
);
Thanks a lot. But I want to show the results after clicking the submit button. How can I do that?
– Mahmudul Hasan
Mar 25 at 0:53
Show the results where? The state.value changes on each onChange event, so any html element that is bound to it- will show the result, regardless of the form submission. I think that your confusion comes from not understanding that React is "declarative". You can read about it here: codeburst.io/declarative-vs-imperative-programming-a8a7c93d9ad2
– sheff2k1
Mar 25 at 1:05
add a comment |
Just add some html element that is bound to your "value" property, like this:
render()
return (
<div>
<h3>Flavor: this.state.value</h3>
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
</div>
);
Thanks a lot. But I want to show the results after clicking the submit button. How can I do that?
– Mahmudul Hasan
Mar 25 at 0:53
Show the results where? The state.value changes on each onChange event, so any html element that is bound to it- will show the result, regardless of the form submission. I think that your confusion comes from not understanding that React is "declarative". You can read about it here: codeburst.io/declarative-vs-imperative-programming-a8a7c93d9ad2
– sheff2k1
Mar 25 at 1:05
add a comment |
Just add some html element that is bound to your "value" property, like this:
render()
return (
<div>
<h3>Flavor: this.state.value</h3>
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
</div>
);
Just add some html element that is bound to your "value" property, like this:
render()
return (
<div>
<h3>Flavor: this.state.value</h3>
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
</form>
</div>
);
answered Mar 25 at 0:18
sheff2k1sheff2k1
536519
536519
Thanks a lot. But I want to show the results after clicking the submit button. How can I do that?
– Mahmudul Hasan
Mar 25 at 0:53
Show the results where? The state.value changes on each onChange event, so any html element that is bound to it- will show the result, regardless of the form submission. I think that your confusion comes from not understanding that React is "declarative". You can read about it here: codeburst.io/declarative-vs-imperative-programming-a8a7c93d9ad2
– sheff2k1
Mar 25 at 1:05
add a comment |
Thanks a lot. But I want to show the results after clicking the submit button. How can I do that?
– Mahmudul Hasan
Mar 25 at 0:53
Show the results where? The state.value changes on each onChange event, so any html element that is bound to it- will show the result, regardless of the form submission. I think that your confusion comes from not understanding that React is "declarative". You can read about it here: codeburst.io/declarative-vs-imperative-programming-a8a7c93d9ad2
– sheff2k1
Mar 25 at 1:05
Thanks a lot. But I want to show the results after clicking the submit button. How can I do that?
– Mahmudul Hasan
Mar 25 at 0:53
Thanks a lot. But I want to show the results after clicking the submit button. How can I do that?
– Mahmudul Hasan
Mar 25 at 0:53
Show the results where? The state.value changes on each onChange event, so any html element that is bound to it- will show the result, regardless of the form submission. I think that your confusion comes from not understanding that React is "declarative". You can read about it here: codeburst.io/declarative-vs-imperative-programming-a8a7c93d9ad2
– sheff2k1
Mar 25 at 1:05
Show the results where? The state.value changes on each onChange event, so any html element that is bound to it- will show the result, regardless of the form submission. I think that your confusion comes from not understanding that React is "declarative". You can read about it here: codeburst.io/declarative-vs-imperative-programming-a8a7c93d9ad2
– sheff2k1
Mar 25 at 1:05
add a comment |
Not sure of the exact behavior you want, but you could keep a boolean that your state that shows/hides the text:
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state =
value: 'coconut',
showFlavor: false // this controls whether or not the text is shown
;
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
// console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
this.setState( showFlavor: true ); // toggle on our boolean, note that in this example it never gets set back to false
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
// text appears here only when state.showFlavor is true
<span>this.state.showFlavor ? `Your favorite flavor is: $this.state.value` : ''</span>
</form>
);
Thanks. This is what I expecting as output. Thanks a lot
– Mahmudul Hasan
Mar 25 at 16:36
add a comment |
Not sure of the exact behavior you want, but you could keep a boolean that your state that shows/hides the text:
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state =
value: 'coconut',
showFlavor: false // this controls whether or not the text is shown
;
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
// console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
this.setState( showFlavor: true ); // toggle on our boolean, note that in this example it never gets set back to false
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
// text appears here only when state.showFlavor is true
<span>this.state.showFlavor ? `Your favorite flavor is: $this.state.value` : ''</span>
</form>
);
Thanks. This is what I expecting as output. Thanks a lot
– Mahmudul Hasan
Mar 25 at 16:36
add a comment |
Not sure of the exact behavior you want, but you could keep a boolean that your state that shows/hides the text:
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state =
value: 'coconut',
showFlavor: false // this controls whether or not the text is shown
;
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
// console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
this.setState( showFlavor: true ); // toggle on our boolean, note that in this example it never gets set back to false
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
// text appears here only when state.showFlavor is true
<span>this.state.showFlavor ? `Your favorite flavor is: $this.state.value` : ''</span>
</form>
);
Not sure of the exact behavior you want, but you could keep a boolean that your state that shows/hides the text:
import React from 'react';
class FlavorForm extends React.Component
constructor(props)
super(props);
this.state =
value: 'coconut',
showFlavor: false // this controls whether or not the text is shown
;
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
handleChange(event)
this.setState(value: event.target.value);
handleSubmit(event)
// console.log('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
this.setState( showFlavor: true ); // toggle on our boolean, note that in this example it never gets set back to false
render()
return (
<form onSubmit=this.handleSubmit>
<label>
Pick your favorite flavor:
<select value=this.state.value onChange=this.handleChange>
<option value="grapefruit">Grapefruit</option>
<option value="lime">Lime</option>
<option value="coconut">Coconut</option>
<option value="mango">Mango</option>
</select>
</label>
<input type="submit" value="Submit" />
// text appears here only when state.showFlavor is true
<span>this.state.showFlavor ? `Your favorite flavor is: $this.state.value` : ''</span>
</form>
);
answered Mar 25 at 1:08
miyumiyu
2327
2327
Thanks. This is what I expecting as output. Thanks a lot
– Mahmudul Hasan
Mar 25 at 16:36
add a comment |
Thanks. This is what I expecting as output. Thanks a lot
– Mahmudul Hasan
Mar 25 at 16:36
Thanks. This is what I expecting as output. Thanks a lot
– Mahmudul Hasan
Mar 25 at 16:36
Thanks. This is what I expecting as output. Thanks a lot
– Mahmudul Hasan
Mar 25 at 16:36
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55329780%2freactjs-how-can-i-print-the-selection-item-in-my-webpage%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown