0

我是一个新手,已经开始开发一个应用程序来从数据库中获取数据。

我的应用程序中有以下代码:

public static Result list() {
    List products = Productslist.getListOfProducts();
    return ok(index.render(products));
}

这给了我以下错误:

Actual List cannot be converted to String on method invocation conversion 也可以查看我的 index.scala.html

#{extends 'main.html' /}
#{set title:'Cars in the car lot' /}
<h1>Products in Lot</h1>

<table border=1>
<tr>
<td>productname</td>
<td>Quantity</td>
<td>Price</td>
</tr>
#{list items:products, as:'product'}
<tr>
<td>${product.getProductname()}</td>
<td>${product.getQuantity()}</td>
<td>${product.getPrice()}</td>
</tr>
#{/list}
</table>

Application.java 的完整代码是:

package controllers;

import play.*;
import play.mvc.*;
import models.Productslist;
import views.html.*;
import views.*;
import java.util.*;

public class Application extends Controller
{


public static Result list() 
    {
        List products = Productslist.getListOfProducts();
        return ok(index.render(products));
    }
}

谁能帮我找到错误的根源?

4

2 回答 2

0

看起来 index.render(products) 上发生了错误;其中方法 render 需要一个字符串,但我们正在传递列表。你能把方法render()的代码放进去吗

于 2013-01-07T04:04:23.000 回答
0

看起来您为视图使用了错误的代码。试试这个

@(products: List[Productslist])

@import helper._

@main("Product list") {

    <h1>@product.size() product(s)</h1>

    <ul>
        @for(product <- products) {
            <li>
                @product.name
            </li>
        }
    </ul>
}

play clean-all在运行服务器之前使用

于 2013-01-07T05:38:05.660 回答