-1
我有以下代碼玉 -如何使用jade顯示可點擊的鏈接?
<jade>
each item in reports
ul
div.lstheader #{item.user}
each val in item.status
li #{val}
<jade>
報告不過是JSON對象,比如如下
status: [ 'test', 'test message','http://stackoverflow.com/questions/ask' ] }
我想顯示如果item.status如果它是一個鏈接的可點擊的鏈接 但如何我可以做它運行時間?
謝謝,我正面臨的真正問題有時我有字符串,如「鏈接是http://stackoverflow.com/questions/ask」或「一些文本http://stackoverflow.com/questions/ask,然後http://stackoverflow.com/questions/ask「在這種情況下如何顯示鏈接使用玉 – anish
嗯,它基本上是一樣的東西......我不明白什麼阻止你在這裏。 您需要使用Jade中的字符串匹配函數('RegExp'或'String.prototype.indexOf()')來提取URL部分,或者最好在Node/Express中提取URL部分,並使用上面提出的兩種方法 –