我正在尝试在Jupyter笔记本中显示带有多行文本列的DataFrame(例如代码片段):
IPython.display.display(df)
不幸的是,这并不尊重文本中的换行符,而是将每个单元格转换为文本墙。
如何在保留的文本单元格中显示包含换行符的数据框?
答案 0 :(得分:1)
尝试@ unsorted回答this question:
this.orderListRef.orderByChild('restaurant').equalTo('rest001').once('value', snap => {
console.log(snap.val())
})
this.orderListRef.child('restaurant/rest001').once('value', snap => {
console.log(snap.val())
})
this.orderListRef.child('restaurant').equalTo('rest001').once('value', snap => {
console.log(snap.val())
})
this.orderListRef.child('restaurant').orderByChild('rest001').once('value', snap => {
console.log(snap.val())
})