2016-04-20 95 views
0

我試圖通過AJAX編輯記錄財產「分割」,但它與下面的錯誤遺漏的類型錯誤:無法讀取的不確定

Uncaught TypeError: Cannot read property 'split' of undefined

這裏間歇性失敗是代碼:

$.ajax({ 
    type: "POST", 
    url: url + "/customer/" + customer_id + "/order/" + order_id + "/cust_inline_editing", 
    data: { 
     '_token': token, 
     'order_id': order_id, 
     'hourid': hourid 
    }, 
    async: false, 
    success: function(data) { 
     $("#inline_submit").text('Update'); 
     var result = JSON.parse(data); 
     alert(result.dato); 
     var edit_date = result.dato.null.split("-").reverse().join("."); 
     $("#dato").val(edit_date);  
    } 
}); 

錯誤的原因是什麼?

+1

__null.split__? – Rayon

+0

result.dato.null? –

+0

我已經打印alert(result.dato)的值;我得到了答案NULL –

回答

1

檢查條件如果result.dato不爲空然後只分裂。

if(result.dato != null) { 
    var edit_date = result.dato.split("-").reverse().join("."); 
    $("#dato").val(edit_date); 
} 
+0

現在工作很好,謝謝Dhara Parmar –

相關問題