2

我正在按照本教程http://www.playframework.com/documentation/2.1.1/JavaTodoList学习 Play Framework 的开发流程。

但是我index.scala.html看到这个编译错误:

“值描述不是产品的成员”

这是我的产品型号:

package app.models;

import java.util.*;
import javax.validation.*;
import play.data.validation.Constraints.*;
 
/**
 * Product.
 */
public class Product
{
    public int id;
    public String name;
    public String description;
    public String dimensions;
    public double price;

    public static List<Product> all()
    {
        return new ArrayList<Product>();
    }

    public static void create(Product product)
    {
        return;
    }

    public static void delete(Long id)
    {
        return;
    }
}

这是视图的代码:

@(products: List[Product], productForm: Form[Product])

@import helper._

@main("ezbuy") {
    <h1>@products.size() product(s)</h1>
    
    <ul>
        @for(product <- products) {
            <li>
                @product.description
                
                @form(routes.Application.deleteProduct(product.id)) {
                    <input type="submit" value="Delete">
                }
            </li>
        }
    </ul>
    
    <h2>Add a new product</h2>
    
    @form(routes.Application.newProduct()) {
        @inputText(productForm("label")) 
        
        <input type="submit" value="Create">
    }
}

我只是没有找到问题出在哪里,因为我已经在视图顶部声明了产品列表,并且它正在使用该@for语句循环。

提前致谢。

4

1 回答 1

2

有一个 Scala 类 scala.Product ( http://www.scala-lang.org/api/current/index.html#scala.Product )。Scala 自动从 scala 包中导入所有内容。我认为你得到了那个类而不是 app.models.Product。

使用完全限定的类名:

@(products: List[app.models.Product], productForm: Form[app.models.Product])

如果您将 Product 直接放入模型包中,则不会发生该错误,因为模型。* 默认情况下在 Play 的 Scala 模板中导入。所以不需要使用完全限定的类名。

于 2013-04-04T22:03:20.533 回答