L'idea di base è quella descritta da @Gates VP. Uso underscore.js per scorrere gli array/gli oggetti.
function formatLog(obj){
var log = "";
_.each(obj, function(val, key){
if(typeof(val) === "object" || typeof(val) === "array"){
// if we have a new list
log += "<ul>";
log += formatLog(val);
log += "</ul>";
}
else{
// if we are at an endpoint
log += "<li>";
log += (key + ": " + val);
log += "</li>";
}
});
return log;
}
Se chiami formatLog()
sui dati di esempio che gli hai fornito ritorna
- ServerAlias:GBIZ-WEB
- URLtoken:CFID=10989&CFTOKEN=f07fe950-53926E3B-F33A-093D-3FCEFB&jsessionid=84303d29a229d1
- id sessione:84197a667053f63433672873j377e7d379101
- UUID:53934LBB-DB8F-79T6-C03937JD84HB864A338
- Modello:/home/vagrant/dev/websites/g-bis/code/webroot/page/home/home.cfm, riga 3
- Contenuto generato:
- Posta:
- Messaggio:tag sconosciuto:cfincflude.
- tagName:cfincflude
- RAW_TRACE:su cfhome2ecfm1296628853.runPage(/home/vagrant/dev/websites/nig-bis/code/webroot/page/home/home.cfm:3)
- ID:CFINCLUDE
- TEMPLATE:/home/vagrant/dev/websites/nig-bis/code/webroot/page/home/home.cfm
- LINEA:3
- TIPO:CFML
- COLONNA:0
- RAW_TRACE:su cfdisplay2ecfm1093821753.runPage(/home/vagrant/dev/websites/nig-bis/code/webroot/page/display.cfm:6)
- ID:CFINCLUDE
- TEMPLATE:/home/vagrant/dev/websites/nig-bis/code/webroot/page/display.cfm
- LINEA:6
- TIPO:CFML
- COLONNA:0
Come formattarlo dipende da te.