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

使用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条)

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?