Olá,
Estou usando o fetch API para trazer informações de um banco.
O problema é que as informações que estão no banco estão com tags html. E assim que passo o json ele transforma isso em texto e fica aparecendo na tela as tags html.
Meu código.
/*
* HomePage
*
* This is the first thing users see of our App, at the '/' route
*
* NOTE: while this component should technically be a stateless functional
* component (SFC), hot reloading does not currently support SFCs. If hot
* reloading is not a necessity for you then you can refactor it and remove
* the linting exception.
*/
import React from 'react';
import { FormattedMessage } from 'react-intl';
import messages from './messages';
import NavBar from 'components/NavBar';
import VerticalNav from 'components/VerticalNav';
//IMPORT JSON
//import data from 'db/mydb.json';
export default class HomePage extends React.Component { // eslint-disable-line react/prefer-stateless-function
constructor(props){
super(props);
this.state = { lista: [] }
}
componentWillMount(){
fetch('http://localhost:3001/perguntas')
.then(function(response) {
if(response.ok) {
return response.json();
}
throw new Error('Network response was not ok.');
})
.then(resultado => {
this.setState({ lista: resultado })
})
.catch(function(error) {
console.log('There has been a problem with your fetch operation: ', error.message);
});
}
render() {
return (
<div>
<NavBar />
<div className="row ml-0 mr-0">
<VerticalNav />
<div className="col-11 pl-0 pr-0">
<div className="container">
{
this.state.lista.map(function(data){
return (
<div className="row mt-5" key={data.id}>
<div className="col-12"><b>Pergunta:</b> {data.body}</div>
</div>
);
})
}
</div>
</div>
</div>
</div>
);
}
}
O resultado:
Pergunta: <p><span style="font-size: 14pt;">LEIA O TEXTO.</span></p>
<p class="Standard"><span style="font-size: 12pt;"><strong>A ESCOLA</strong></span><br /><span style="font-size: 12pt;"> TODO DIA,</span><br /><span style="font-size: 12pt;"> NA ESCOLA,</span><br /><span style="font-size: 12pt;"> A PROFESSORA,</span><br /><span style="font-size: 12pt;"> O PROFESSOR.</span><br /><span style="font-size: 12pt;"> A GENTE APRENDE,</span><br /><span style="font-size: 12pt;"> E BRINCA MUITO</span><br /><span style="font-size: 12pt;"> COM DESENHO,</span><br /><span style="font-size: 12pt;"> TINTA E COLA.</span><br /><span style="font-size: 12pt;"> MEUS AMIGOS</span><br /><span style="font-size: 12pt;"> TÃO QUERIDOS</span><br /><span style="font-size: 12pt;"> FAZEM FARRA,</span><br /><span style="font-size: 12pt;"> FAZEM FILA.</span><br /><span style="font-size: 12pt;"> O PAULINHO,</span><br /><span style="font-size: 12pt;"> O PEDRÃO,</span><br /><span style="font-size: 12pt;"> A PATRÍCIA</span><br /><span style="font-size: 12pt;"> E A PRISCILA.</span><br /><span style="font-size: 12pt;"> QUANDO TOCA</span><br /><span style="font-size: 12pt;"> O SINAL,</span><br /><span style="font-size: 12pt;"> NOSSA AULA</span><br /><span style="font-size: 12pt;"> CHEGA AO FIM.</span><br /><span style="font-size: 12pt;"> ATÉ AMANHÃ,</span><br /><span style="font-size: 12pt;"> AMIGUINHOS,</span><br /><span style="font-size: 12pt;"> NÃO SE ESQUEÇAM, NÃO,</span><br /><span style="font-size: 12pt;"> DE MIM...<br /></span><span style="font-size: 8pt;">CLÁUDIO THEBAS<em>. AMIGOS DO PEITO.</em> BELO HORIZONTE: FORMATO, 1996. P. 8-9.</span></p>
<p class="Standard" style="font-size: 9pt;"><span style="font-size: 14pt;">ONDE AS CRIANÇAS DO TEXTO ESTÃO?</span></p>
Como posso resolver isso? Obrigado.