繁体   English   中英

为什么我将映射的类型不匹配作为路由参数?

[英]Why do I get a type mismatch for a map as a routing parameter?

我正在使用playframework 2.3.8,并具有一个视图类。 在其中有一个按钮:

<button class="btn btn-default" type="button" onclick="@routes.Application.sendMap(myMap)" method="POST">Send</button>

我想在控制器类(Application.java)中的地图上添加一个问题/答案对:

public static Result sendMap(Map<Question, List<Answer>> sendMap){
    Question question4 = new Question("ertw", "SendMap Question?", 34, "Tim");
    Answer answer41 = new Answer("werw", "ertw", "SendMap Answer 1!", 12, "Oliver");
    Answer answer42 = new Answer("tzsdfu", "ertw", "SendMap Answer 2!", 1, "Marcus");

    List<Answer> answerList4 = new ArrayList<Answer>();
    answerList4.add(answer41);
    answerList4.add(answer42);

    sendMap.put(question4, answerList4);
    return ok(views.html.frageAntwort.render(sendMap));
}

在我的routes.conf中,我已将路由添加到控制器类,并使用Map作为参数:

POST    /QuestionMap                    controllers.Application.sendMap(Map)

但是现在我得到了错误:

type mismatch; found : String required: java.util.Map[model.Question,java.util.List[model.Answer]]

为什么将地图转换为字符串?

默认参数类型为String:“对于String类型的参数,参数类型是可选的。” 文件播放 您也可以在这里看看: 如何在Stack Overflow上创建Map-post 您应该创建正确的模板,然后将其通过配置文件中方法中的参数传递

我现在几乎可以完全使用 ……尽管我还不完全了解如何:

我的按钮在视图类中,现在没有任何参数

<a href="@routes.Application.sendMap()"><button class="btn btn-default" type="button">Absenden</button>

我的控制器类现在可以正确地将另一个伪造的问题/答案对放入地图中,然后将其与更改后的地图一起返回到index.scala.html:

return ok(views.html.index.render(myMap));

最重要的部分发生在routes.conf中:

GET     /                           controllers.Application.index()
GET     /Fragenliste                controllers.Application.sendMap()
GET     /FrageStellen               controllers.Application.askQuestion()
GET     /Einstellungen              controllers.Application.showSettings()
GET     /Quiz                       controllers.Application.startQuiz()

sendMap()现在没有参数,并且指向另一个名为/Fragenliste站点。 还有我不完全理解的部分-如果我使用

GET     /                           controllers.Application.sendMap()

它指向Application.java中的index()方法。 在那里,我有另一个名为initialize()的方法:

public static Result index() {
    initialize();
    (...)
}

public static void initialize() {
    Question question1 = new Question("xyz", "Do Androids dream?", 127, "Marcus");
    Answer answer11 = new Answer("zab", "xyz", "Only of electric sheep!", 70, "Tibor");
    Answer answer12 = new Answer("qwert", "xyz", "No, they dont!", 10, "Sarah");

    List<Answer> answerList1 = new ArrayList<Answer>();
    answerList1.add(answer11);
    answerList1.add(answer12);

    myMap.clear();
    myMap.put(question1, answerList1);
}

在此之后,我清除了旧地图的其余部分后,就可以构建地图。 因此,我的路线指向了索引,现在没有添加新问题! 为什么我也不能指向索引,但仍然可以正常工作?

基本上:

mysite.com/ = index ... user presses button for new question, gets transfered to
mysite.com/enterQuestion ... user enters question and hits "submit", gets transfered to
mysite.com/ = index

我目前的解决方案是:

mysite.com/ = index ... user presses button for new question, gets transfered to
mysite.com/enterQuestion ... user enters question and hits "submit", gets transfered to
mysite.com/ANOTHER_SITE != index, but looks and works exactly like the index!

有办法吗? 如果是,我的问题将得到彻底解决。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM