admin管理员组文章数量:1344618
I'm trying to submit a function that will generate a gif, when pressing the get gif button.
However, it does not show anything in the console, and the page reloads.
1) I want the client to type in a value
2) set the value to the like so
ex.
;api_key=iBXhsCDYcnktw8n3WSJvIUQCXRqVv8AP&limit=5
3) fetch the value and return like the following
Current project
.js
App.js
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import Card from './Card';
import { throws } from 'assert';
class App extends Component {
constructor(props){
super(props);
this.state = {
query: '',
slug:undefined,
url:undefined
}
this.onChange = this.onChange.bind(this);
}
onChange(e){
this.setState({
query: e.target.query
})
}
getGIY = async (e) =>{
try {
const {slug, url} = this.state;
const query = this.state._query
const response = await fetch(`=${query}&api_key=iBXhsCDYcnktw8n3WSJvIUQCXRqVv8AP&limit=5`);
const data = await response.json();
const mainData = data.data;
if(query){
this.setState({
slug: mainData[0].title,
url: mainData[0].images.downsized.url
});
console.log(mainData);
}
} catch (error) {
console.log(error);
}
}
render() {
return(
<div>
<h1> Wele</h1>
<form onSubmit={this.props.getGIY}>
<input type="text" name="query" onChange={this.onChange} ref={(input) => {this.state._query = input}} placeholder="Search GIF..."/>
<button>Get GIF</button>
</form>
<Card slug={this.state.slug} url={this.state.url}/>
</div>
);
}
}
export default App;
Card.js
import React, {Component} from 'react';
const Styles = {
width: '300px',
height: '300px'
}
class Card extends React.Component {
render() {
return (
<div>
<h1>{this.props.slug}</h1>
<div>
<img src={this.props.url}/>
</div>
</div>
);
}
}
export default Card;
I'm trying to submit a function that will generate a gif, when pressing the get gif button.
However, it does not show anything in the console, and the page reloads.
1) I want the client to type in a value
2) set the value to the like so
ex.
http://api.giphy./v1/gifs/search?q=USER_VALUE&api_key=iBXhsCDYcnktw8n3WSJvIUQCXRqVv8AP&limit=5
3) fetch the value and return like the following
Current project
https://stackblitz./edit/react-4mzteg?file=index.js
App.js
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import Card from './Card';
import { throws } from 'assert';
class App extends Component {
constructor(props){
super(props);
this.state = {
query: '',
slug:undefined,
url:undefined
}
this.onChange = this.onChange.bind(this);
}
onChange(e){
this.setState({
query: e.target.query
})
}
getGIY = async (e) =>{
try {
const {slug, url} = this.state;
const query = this.state._query
const response = await fetch(`http://api.giphy./v1/gifs/search?q=${query}&api_key=iBXhsCDYcnktw8n3WSJvIUQCXRqVv8AP&limit=5`);
const data = await response.json();
const mainData = data.data;
if(query){
this.setState({
slug: mainData[0].title,
url: mainData[0].images.downsized.url
});
console.log(mainData);
}
} catch (error) {
console.log(error);
}
}
render() {
return(
<div>
<h1> Wele</h1>
<form onSubmit={this.props.getGIY}>
<input type="text" name="query" onChange={this.onChange} ref={(input) => {this.state._query = input}} placeholder="Search GIF..."/>
<button>Get GIF</button>
</form>
<Card slug={this.state.slug} url={this.state.url}/>
</div>
);
}
}
export default App;
Card.js
import React, {Component} from 'react';
const Styles = {
width: '300px',
height: '300px'
}
class Card extends React.Component {
render() {
return (
<div>
<h1>{this.props.slug}</h1>
<div>
<img src={this.props.url}/>
</div>
</div>
);
}
}
export default Card;
Share
Improve this question
asked Dec 27, 2018 at 4:05
BARNOWLBARNOWL
3,60913 gold badges49 silver badges85 bronze badges
1
-
1
add
e.preventDefault()
as the first line ofgetGIY
– ic3b3rg Commented Dec 27, 2018 at 4:08
2 Answers
Reset to default 7You are missing 2 3 4 things
1) instead of this.props.getGIY
you need to use this.getGIY
2) as you are using form you need to preventdefault using
getGIY = async (e) =>{
e.preventDefault();
3) instead of e.target.query you need to get e.target.value
4) instead of const query = this.state._query
you need to use const query = this.state.query
your state name is query
onChange(e){
this.setState({
query: e.target.value
})
}
Demo
Your getGIY function
getGIY = async (e) =>{
e.preventDefault();
try {
const {slug, url} = this.state;
const query = this.state._query
const response = await fetch(`http://api.giphy./v1/gifs/search?q=${query}&api_key=iBXhsCDYcnktw8n3WSJvIUQCXRqVv8AP&limit=5`);
const data = await response.json();
const mainData = data.data;
if(query){
this.setState({
slug: mainData[0].title,
url: mainData[0].images.downsized.url
});
console.log(mainData);
}
} catch (error) {
console.log(error);
}
}
Your form
<form onSubmit={this.getGIY}>
<input type="text" name="query" onChange={this.onChange} ref={(input) => {this.state._query = input}} placeholder="Search GIF..."/>
<button>Get GIF</button>
</form>
Mixing promises and try/catch blocks is a little messy as promises themselves duplicate much of the behavior of try/catch blocks. Promises are also chainable. I suggest this edit for your getGIY function. It's just as readable as the existing try/catch w/ unchained promises but more idiomatic (e.g. if THIS is successful, THEN do this next), and more importantly it's a bit more succinct.
getGIY = async (e) =>{
e.preventDefault();
const { query } = this.state;
/* fetch and response.json return promises */
await fetch(`http://api.giphy./v1/gifs/search?q=${query}&api_key=iBXhsCDYcnktw8n3WSJvIUQCXRqVv8AP&limit=5`)
// fetch resolved with valid response
.then(response => response.json())
// response.json() resolved with valid JSON data
// ({ data }) is object destructuring (i.e. data.data)
.then(({ data }) => {
this.setState({
slug: data[0].title,
url: data[0].images.downsized.url
});
})
/* use catch block to catch any errors or rejected promises */
.catch(console.log); // any errors sent to log
}
本文标签: javascriptonSubmit is not executing async functionStack Overflow
版权声明:本文标题:javascript - onSubmit is not executing async function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743793088a2539937.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论