duanjing2013 2019-04-18 07:31
浏览 268
已采纳

使用JSON Parse解析数据时遇到问题

I got problem when parsing JSON from my AJAX. This is my error and the data that I want to parse

This my code:

var url = "<?php echo base_url(); ?>home/get_produk_by_eancode";
$.ajax({
  type: "POST", 
  url: url, 
  data: { kodePilihan: kodeBarangPilihan, kodeScala: kodeScala, codecust: 
   codeCustomer }, 
  success: function(result) {
    if(result) { 
        console.log(result);
       obj = $.parseJSON(result);
    }

My controller

public function get_produk_by_eancode() {
    $eancode = $this->input->post('kodePilihan');
    $kodeScala = $this->input->post('kodeScala');
    $codecust = $this->input->post('codecust');
    $barangPilihan = $this->web_ordering_model->get_produk_by_eancode_page3($eancode, $kodeScala, $codecust)->row_array();
    echo json_encode($barangPilihan);
}

My result data from the controller or you can see in picture

{"SC01132":"*1038 AR BRU KM","SC01002":"BOX-50 dengan Roda","SC01011":"A-19","brand":"Kiramas","verpacking":12,"List1":"76250.00000000","SC01001":"625050","Free":".00","LastTglProduksi":"1900-01-01 00:00:00.000","PricelistName":"Netto"}
  • 写回答

3条回答 默认 最新

  • dongyin0628 2019-08-09 07:21
    关注

    Solved by this code

    $.trim()
    

    Sorry for my long report, thanks.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?