1

我正在使用升降框架工作。我从 github.com 下载了一个示例应用程序,我正在尝试在其中添加更多行。我在 src/main/webapp 中有一个 index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta content="text/html; charset=UTF-8" http-equiv="content-type" />   <title>Home</title></head>
<body class="lift:content_id=main">
 <div id="main" class="lift:surround?with=default;at=content">
  <h2>Welcome to your project!</h2>
  <p>
<span class="lift:helloWorld.howdy">
  Welcome to your Lift app at <span id="time">Time goes here</span>
</span>
  </p>
 </div>
</body>
</html>

我正在尝试在其中添加以下行

<span class="lift:helloWorld.newHowdy">
  Welcome to your Lift app at <span id="newTime"></span>
</span>

我在代码片段文件夹的 helloworld 类中编写了 newHowdy 方法。但是在浏览器中显示一个错误,例如,错误处理片段:helloWorld.newHowdy 原因:未找到方法 XML 导致此错误:

我该如何解决这个问题?以及如何在片段中添加更多页面和 .scala 文件并提前从 html pages..thanx 访问它

4

1 回答 1

0

是的,当然,您可以拥有任意数量的类和 html-s。

您是否严格将 "howdy" 方法复制粘贴到 "newHowdy" ?

此外,标签应该一个接一个地放置,而不是放在里面。能否请您分享完整的新 HTML 代码和代码段?

于 2013-03-15T12:21:37.993 回答