Estou usando o ReactJS e parte do meu aplicativo requer um JSON bem impresso.
Eu obtenho alguns JSON como:, { "foo": 1, "bar": 2 }
e se eu executar isso JSON.stringify(obj, null, 4)
no console do navegador, ele imprime bastante, mas quando eu o uso neste snippet de reação:
render: function() {
var json = this.getStateFromFlux().json;
return (
<div>
<JsonSubmitter onSubmit={this.onSubmit} />
{ JSON.stringify(json, null, 2) }
</div>
);
},
ele renderiza JSON bruto que se parece com "{ \"foo\" : 2, \"bar\": 2}\n"
.
Como faço para que esses caracteres sejam interpretados corretamente? {
javascript
json
reactjs
flux
Brandon
fonte
fonte
JSON.stringify(json, null, "\t")
?this.getStateFromFlux().json
já estava retornando uma string. Eu o modifiquei para conter um objeto JS em vez disso, e agora funciona perfeitamente.Respostas:
Você precisará inserir a
BR
tag apropriadamente na string resultante ou usar, por exemplo, umaPRE
tag para que a formatação dostringify
seja mantida:var data = { a: 1, b: 2 }; var Hello = React.createClass({ render: function() { return <div><pre>{JSON.stringify(data, null, 2) }</pre></div>; } }); React.render(<Hello />, document.getElementById('container'));
Exemplo de trabalho .
Atualizar
class PrettyPrintJson extends React.Component { render() { // data could be a prop for example // const { data } = this.props; return (<div><pre>{JSON.stringify(data, null, 2) }</pre></div>); } } ReactDOM.render(<PrettyPrintJson/>, document.getElementById('container'));
Componente funcional sem estado, React .14 ou superior
const PrettyPrintJson = ({data}) => { // (destructured) data could be a prop for example return (<div><pre>{ JSON.stringify(data, null, 2) }</pre></div>); }
Ou, ...
const PrettyPrintJson = ({data}) => (<div><pre>{ JSON.stringify(data, null, 2) }</pre></div>);
Exemplo de trabalho
Memo / 16.6+
(Você pode até querer usar um memorando, 16.6+)
const PrettyPrintJson = React.memo(({data}) => (<div><pre>{ JSON.stringify(data, null, 2) }</pre></div>));
fonte
Só para estender um pouco a resposta do WiredPrairie, um mini componente que pode ser aberto e fechado.
Pode ser usado como:
<Pretty data={this.state.data}/>
export default React.createClass({ style: { backgroundColor: '#1f4662', color: '#fff', fontSize: '12px', }, headerStyle: { backgroundColor: '#193549', padding: '5px 10px', fontFamily: 'monospace', color: '#ffc600', }, preStyle: { display: 'block', padding: '10px 30px', margin: '0', overflow: 'scroll', }, getInitialState() { return { show: true, }; }, toggle() { this.setState({ show: !this.state.show, }); }, render() { return ( <div style={this.style}> <div style={this.headerStyle} onClick={ this.toggle }> <strong>Pretty Debug</strong> </div> {( this.state.show ? <pre style={this.preStyle}> {JSON.stringify(this.props.data, null, 2) } </pre> : false )} </div> ); } });
Atualizar
Uma abordagem mais moderna (agora que createClass está em vias de extinção)
import styles from './DebugPrint.css' import autoBind from 'react-autobind' import classNames from 'classnames' import React from 'react' export default class DebugPrint extends React.PureComponent { constructor(props) { super(props) autoBind(this) this.state = { show: false, } } toggle() { this.setState({ show: !this.state.show, }); } render() { return ( <div style={styles.root}> <div style={styles.header} onClick={this.toggle}> <strong>Debug</strong> </div> {this.state.show ? ( <pre style={styles.pre}> {JSON.stringify(this.props.data, null, 2) } </pre> ) : null } </div> ) } }
E seu arquivo de estilo
.root {backgroundColor: '# 1f4662'; cor: '#fff'; fontSize: '12px'; }
.header {backgroundColor: '# 193549'; preenchimento: '5px 10px'; fontFamily: 'monospace'; cor: '# ffc600'; }
.pre {display: 'bloquear'; preenchimento: '10px 30px'; margem: '0'; estouro: 'scroll'; }
fonte
O ' react-json-view ' fornece a solução de renderização da string json.
import ReactJson from 'react-json-view'; <ReactJson src={my_important_json} theme="monokai" />
fonte
const getJsonIndented = (obj) => JSON.stringify(newObj, null, 4).replace(/["{[,\}\]]/g, "") const JSONDisplayer = ({children}) => ( <div> <pre>{getJsonIndented(children)}</pre> </div> )
Então você pode usá-lo facilmente:
const Demo = (props) => { .... return <JSONDisplayer>{someObj}<JSONDisplayer> }
fonte
Aqui está uma demonstração dos
react_hooks_debug_print.html
ganchos de reação baseada na resposta de Chris. O exemplo de dados json é de https://json.org/example.html .<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Hello World</title> <script src="https://unpkg.com/react@16/umd/react.development.js"></script> <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> <!-- Don't use this in production: --> <script src="https://unpkg.com/[email protected]/babel.min.js"></script> </head> <body> <div id="root"></div> <script src="https://raw.githubusercontent.com/cassiozen/React-autobind/master/src/autoBind.js"></script> <script type="text/babel"> let styles = { root: { backgroundColor: '#1f4662', color: '#fff', fontSize: '12px', }, header: { backgroundColor: '#193549', padding: '5px 10px', fontFamily: 'monospace', color: '#ffc600', }, pre: { display: 'block', padding: '10px 30px', margin: '0', overflow: 'scroll', } } let data = { "glossary": { "title": "example glossary", "GlossDiv": { "title": "S", "GlossList": { "GlossEntry": { "ID": "SGML", "SortAs": "SGML", "GlossTerm": "Standard Generalized Markup Language", "Acronym": "SGML", "Abbrev": "ISO 8879:1986", "GlossDef": { "para": "A meta-markup language, used to create markup languages such as DocBook.", "GlossSeeAlso": [ "GML", "XML" ] }, "GlossSee": "markup" } } } } } const DebugPrint = () => { const [show, setShow] = React.useState(false); return ( <div key={1} style={styles.root}> <div style={styles.header} onClick={ ()=>{setShow(!show)} }> <strong>Debug</strong> </div> { show ? ( <pre style={styles.pre}> {JSON.stringify(data, null, 2) } </pre> ) : null } </div> ) } ReactDOM.render( <DebugPrint data={data} />, document.getElementById('root') ); </script> </body> </html>
Ou, da seguinte forma, adicione o estilo ao cabeçalho:
<style> .root { background-color: #1f4662; color: #fff; fontSize: 12px; } .header { background-color: #193549; padding: 5px 10px; fontFamily: monospace; color: #ffc600; } .pre { display: block; padding: 10px 30px; margin: 0; overflow: scroll; } </style>
E substitua
DebugPrint
pelo seguinte:const DebugPrint = () => { // /programming/30765163/pretty-printing-json-with-react const [show, setShow] = React.useState(false); return ( <div key={1} className='root'> <div className='header' onClick={ ()=>{setShow(!show)} }> <strong>Debug</strong> </div> { show ? ( <pre className='pre'> {JSON.stringify(data, null, 2) } </pre> ) : null } </div> ) }
fonte