Url.renderString
renderString() -> string
Description
Convert the Url to a plain String with placeholders filled.
$posts = url'/posts/all' $posts.query({ sort: 'desc' }) $posts.renderString() //= '/posts/all?sort=desc'
Convert the Url to a plain String with placeholders filled.
$posts = url'/posts/all' $posts.query({ sort: 'desc' }) $posts.renderString() //= '/posts/all?sort=desc'