2
我有一個簡單的電梯頁:如何獲取Lift代碼片段中的頁面參數?
<html>
<head></head>
<body>
<span id="content" class="lift:GetContent"></span>
</body>
</html>
和一個簡單的片斷:
class GetContent {
def render = "#content" #> "someValue"
}
的問題是,我怎麼能得到的參數,這是在URL中傳遞(如page.html?param=value
)?