Как можно значение из данных json и распечатать в текстовом поле html.
Данные json выглядят так: {"name":"paul"}
, но я хочу, чтобы в моем текстовом поле отображался только paul. мой php код codeigniter ниже:
$data['name']= $this->name_model->get_names($obj);
$this->output->set_content_type('application/json');
$this->output->set_output(json_encode($data));
$string = $this->output->get_output();
echo $string;
jquery, ajax коды ниже:
if(obj != ''){
$.ajax({
url:"<?php echo base_url();?>Geting_names/name_listing",
method:"POST",
dataType: "text",
data: {obj},
success:function(resp){
$("div#sending_field").html('<div class="alert alert-success">' + resp +'</div>');