Я новичок, чтобы реагировать, а также пользовательский интерфейс, и я хочу создать красивую таблицу из ответа JSON, полученного от моего вызова ajax на сервер. Как мне это сделать.Создание динамической таблицы из json-ответа в responseJS
Любая информация была бы действительно полезна.
var Contact = React.createClass({
getInitialState: function(){
return {}
},
submit: function (e){
var self
e.preventDefault()
self = this
console.log(this.state);
var data = {
Id: this.state.name,
User: this.state.email,
}
$.ajax({
type: 'POST',
dataType: 'json',
url: 'http://localhost:8080/ui/start',
data: JSON.stringify({
Id: this.state.name,
User: this.state.email,
})
})
.done(function(response) {
console.log(response);
// This is where I have the JSON response .How can I create a dynamic table from this response **strong text**and render in on UI. //
}
Мой ответ выглядит следующим образом { 'имя': 'дивья', 'ид': '1', 'задача': 'хуг'}
Спасибо.