この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
I have a doubt. I'm trying to return a link path but it's coming in a string format. How to return a hyperlink that will point to the exact page instead of returning the path as a string?
表示
返信
いいね!の合計
Hi @Sanjana12
You just need to put the String in href attribute of anchor tag so that the hyperlink is added.
Please see the below code for <a> tag.
<div data-sly-list.item="${books.bookDetailsWithMap}"> <p> Book : <b>${item.bookname} </b></p> <a href="${item.booksubject}"> Book Link</a> </div>
Actually we have to wrap both of them into href otherwise it's not working
Hi @Sanjana12 ,
Any string added to href of anchor will show it as a link.
Can you please explain a little to understand the exact issue.
Thanks
When I'm putting the link path within href attribute, it's just returning the string value. But only when I'm wrapping the link path with the title name or whatsoever within anchor tag, it's rendering a hyperlink.