Imprimir objeto en React JS
Para imprimir los valores de un objeto podemos utilizar el siguiente método de JSON
JSON.stringify
Ejemplo:
var numbers = {
'abc' : [1, 2, 3],
'b': {
1: 'c'
}
}
var root = document.getElementById('root');
var App = React.createClass({
render: function() {
return (
<div>
<div>{JSON.stringify(numbers)}</div>
</div>
)
}
});
React.render(<App />, root);
JSON.stringify
Ejemplo:
var numbers = {
'abc' : [1, 2, 3],
'b': {
1: 'c'
}
}
var root = document.getElementById('root');
var App = React.createClass({
render: function() {
return (
<div>
<div>{JSON.stringify(numbers)}</div>
</div>
)
}
});
React.render(<App />, root);
Comentarios
Publicar un comentario