- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我的 Controller 类中伪造一些问题/答案对,并通过使用 playframework 将它们发送到 View 类中。
我的问题/答案结构如下:
- Question 1
-- Answer 1.1
-- Answer 1.2
- Question 2
-- Answer 2.1
- Question 3
-- Answer 3.1
-- Answer 3.2
...
我的 Application.java 类中有这些。目前它们是硬编码的,稍后我想使用数据库。
然后我有一个index.scala.html( View 类),在那里我迭代问题和答案并像在我的结构中一样显示它们 - 这是行不通的!
但是如何将它们从 java 类发送到 scala 类呢?
到目前为止,我已经尝试使用 Google Guava Multimap:
// Needed, as the view-class gets a List[String]
static List<String> questionList = new ArrayList<String>();
static List<String> answerList = new ArrayList<String>();
// Create the Multimap, one for questions, one for answers
Multimap<String, String> questionMap = ArrayListMultimap.create();
Multimap<String, String> answerMap = ArrayListMultimap.create();
// Question 1, in the format Questiontext (used as key here) / ID, votescore, Userid
questionMap.put("What happens if I use a break here?", "e77dccbc-fd8d-4641-b9ca-17528e5d56b2");
questionMap.put("What happens if I use a break here?", "150");
questionMap.put("What happens if I use a break here?", "345");
// Answer 1.1 in the format: Answertext / ID / Question-ID (Answer needs to be linked to a question) / votescore / Userid
answerMap.put("The loop will just fall through!", "b8756ff5-ff8a-4a17-9517-811b91639fdf");
answerMap.put("The loop will just fall through!", "e77dccbc-fd8d-4641-b9ca-17528e5d56b2");
answerMap.put("The loop will just fall through!", "46");
answerMap.put("The loop will just fall through!", "567");
// The Lists get the keySets (contains the questiontext / answertext)
questionList.addAll(questionMap.keySet());
answerList.addAll(answerMap.keySet());
// returns the 2 lists to the view-class
public static Result index() {
return ok(index.render(questionList, answerList));
}
index.scala.html:
// first line, gets the q/a lists as parameters
@(questions: List[String], answers: List[String])
// iterate over the question-list and show the questiontext (works)
@for(index <- 0 until questions.size){
@questions(index)
// iterate over the answers and show them as well, I know I am iterating wrong somehow here!
@for(index <- 0 until answers.size){
@answers(index)
}
我知道我错误地迭代了答案,所以现在显示的结构是:
- Question 1
-- Answer 1.1
-- Answer 1.2
-- Answer 2.1
-- Answer 3.1
-- Answer 3.2
- Question 2
-- Answer 1.1
-- Answer 1.2
-- Answer 2.1
-- Answer 3.1
-- Answer 3.2
- Question 3
-- Answer 1.1
-- Answer 1.2
-- Answer 2.1
-- Answer 3.1
-- Answer 3.2
...
所以我会显示每个问题的每个答案。这源于我不知道如何将答案链接到相应问题的问题!我的问题和答案中有 ID,但我不知道如何将它们(与 q/a 文本一起!)放入 View 类中以及如何迭代 ID。
也许我可以使用另一种数据结构来使我的方法更容易?
[编辑1]============================================ ===========[编辑1]
我现在改变了我的方法并使用带有 2 个类(Question.java 和 Answer.java)的普通 Map:
Question.java(Answer.java 类似):
public class Question {
public String ID;
public String questionText;
public Integer voteScore;
public String userID;
public Question(String inputID, String inputQuestionText, Integer inputVoteScore, String inputUserID){
this.ID = inputID;
this.questionText = inputQuestionText;
this.voteScore = inputVoteScore;
this.userID = inputUserID;
}
}
在我的 Application.java ( Controller 类)中,我使用 Map 并有一些假问题/答案:
static Map<Question, List<Answer>> myMap = new HashMap<Question, List<Answer>>();
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");
Question question2 = new Question("fgh", "Why is the sky blue?", 76, "Frank");
Answer answer21 = new Answer("xcv", "fgh", "Frequency filtered sunlight!", 45, "Oliver");
Answer answer22 = new Answer("tzu", "fgh", "Light reflects from the blue sea water!", 3, "Tom");
List<Answer> answerList1 = new ArrayList<Answer>();
answerList1.add(answer11);
answerList1.add(answer12);
List<Answer> answerList2 = new ArrayList<Answer>();
answerList2.add(answer21);
answerList2.add(answer22);
myMap.put(question1, answerList1);
myMap.put(question2, answerList2);
return ok(views.html.index.render(myMap));
在我的index.scala.html中:
@import model.Question
@import model.Answer
@(myMap: Map[Question, List[Answer]])
@for((key, value) <- myMap){
@key.questionText - @value <br>
}
现在的输出是:
Why is the sky blue? -
[ID = xcv questionID = fgh answerText = Frequency filtered sunlight! voteScore = 45 userID = Oliver, ID = tzu questionID = fgh answerText = Light reflects from the blue sea water! voteScore = 3 userID = Tom]
Do Androids dream? -
[ID = zab questionID = xyz answerText = Only of electric sheep! voteScore = 70 userID = Tibor, ID = qwert questionID = xyz answerText = No, they dont! voteScore = 10 userID = Sarah]
那么如何迭代answerTexts 并将它们显示在我的 View 类中?我不知道如何访问该列表。
最佳答案
只需使用内部循环来迭代答案(因为 value 变量将保存循环迭代问题的答案):
index.scala.html
@import model.Question
@import model.Answer
@(myMap: Map[Question, List[Answer]])
@for((key, value) <- myMap){
@key.questionText<br>
@for(ans <- value){
<p>Possible answer: @ans.answerText</p>
}
}
关于java - 如何将问题/答案对转移到 playframework 中的 View 类中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29952251/
如果我将我的个人 repo 转移到一个组织(由我创建),我将失去所有 见解 例如来自原始 Repo 的流量历史记录、拉取请求、贡献者、 fork 等? 最佳答案 拉取请求被保留:参见“About re
如何为解析 if-then[-else] 案例制定正确的规则?这是一些语法: { module TestGram (tparse) where } %tokentype { String }
如何为解析 if-then[-else] 案例制定正确的规则?这是一些语法: { module TestGram (tparse) where } %tokentype { String }
我读过有关mutex的信息,这些信息由线程拥有,并且只能由拥有的线程使用。在this answer中,该解决方案建议每个进程在发出互斥信号之前,必须拥有互斥锁的所有权。我必须在这里承认自己的愚蠢,不知
我只能从回调函数之一中想到 curl_close() 。 但是 php 抛出了一个警告: PHP 警告:curl_close():尝试从回调中关闭 cURL 句柄。 任何想法如何做到这一点? 最佳答案
带有冲突的语法的精简版本: body: variable_list function_list; variable_list: variable_list variable | /* empty
我创建了新的开发者帐户,然后将应用程序转移到新帐户。然后我在新帐户下创建了相同的标识符。并构建App并上传到AppStore。 I have got the warning with WARNING
我想像这样管理类主任的所有 Activity : 此外所有 Activity 都扩展基本 Activity 以使用公共(public) View 。 在这种情况下,我想处理传输 Activity ,例
使用 C 中的简单链表实现,我如何告诉 Splint 我正在转让 data 的所有权? typedef struct { void* data; /*@null@*/ void* ne
请参阅以下 yacc 代码。如果我删除生产因素:'!' expr,解析冲突消失。这里发生了什么? %{ #include #include %} %token TRUE %token FALSE
是否可以将 props 向下传输到子组件,其中 { ..this.props } 用于更简洁的语法,但是排除某些 props,如 className 或 id? 最佳答案 您可以使用解构来完成这项工作
如果我有以下数据框: date A B M S 20150101 8 7 7.5 0 20150101 10 9 9
我需要将一个 __m128i 变量(比如 v)移动 m 位,以便位移动所有变量(因此,结果变量表示 v*2^m)。执行此操作的最佳方法是什么?! 请注意 _mm_slli_epi64 分别移动 v0
我需要这样调用我的程序: ./program hello -r foo bar 我从 argv[1] 中打招呼,但我在使用值 bar 时遇到问题,我是否也应该将“r:”更改为其他内容? while((
我是新来的 Bison我在转换/减少冲突方面遇到了麻烦...我正在尝试从文件加载到 array data[] : struct _data { char name[50]; char sur
当然有很多关于解决移位/归约错误的文档和方法。 Bison 文档建议正确的解决方案通常是%期待它们并处理它。 当你遇到这样的事情时: S: S 'b' S | 't' 您可以像这样轻松解决它们: S:
我有以下(大量精简的)快乐语法 %token '{' { Langle } '}' { Rangle } '..' { DotDot } '::' { ColonC
我的 Bison 解析器中有很多错误,即使它运行良好,我也想了解这些冲突。代码如下: 词法分析器: id ([[:alpha:]]|_)([[:alnum:]]|_)* %% {id
在我的项目中,我有这样的情况,一个 Activity 应该将值(value)转移到另一个 Activity 。并且根据这个值应该选择需要的菜单元素。我试图在 bundle 的帮助下做到这一点,但我不知
我一直在阅读 NSIndexPaths 以获得 uitableviews 等。但是我很难操纵现有的索引路径。 我想在保留行的同时采用现有的索引路径递增/移动每个部分。因此 indexPath.sect
我是一名优秀的程序员,十分优秀!