私は初心者で、剣道ウィンドウに Json をきれいに印刷する方法を見つけようとしています。使用している機能は次のとおりです。
function DisplayRequestSample(eventRequestSample) {
var kendoWindow = $("<div />").kendoWindow({
title: "Event Request Sample",
resizable: false,
modal: true,
animation: false,
width: 700,
height: 600
});
kendoWindow.data("kendoWindow")
.content(JSON.stringify(JSON.parse(eventRequestSample),null,4))
.center().open();
}
現在の出力:
{ "TrackingID": "89449f04-86b8-4e48-ad1d-52fde970261d", "RequestorID": "Web", "EventType": "Blah", "Environment": "TEST", "ProfileID": 0 }
しかし、適切なスペースと改行/インデントをどのように配置できますか。
JSON.stringify は Json をインデントしていません。正しく使用しているかどうかはわかりません。ご検討いただきありがとうございます。