Reputation: 27200
I have a simple lift page:
<html>
<head></head>
<body>
<span id="content" class="lift:GetContent"></span>
</body>
</html>
and a simple snippet:
class GetContent {
def render = "#content" #> "someValue"
}
The question is, how can I get the parameter, which is passed in URL (like page.html?param=value
)?
Upvotes: 2
Views: 870