你好我正在使用django-tastypie在Q & A上工作。jQuery有時加載所有的值,但有時會丟失一些值
在我的模板中需要打印所有與某個主題相關的問題以及與某個特定問題相關的所有答案,爲此,我將一個對象傳遞給了jQuery文件並在那裏迭代該對象。
這是CONSOLE.LOG代碼
$(data.quiztopics).each(function(index,element){
$(element.questions).each(function(index,question){
$(".quiz").append("<table id='question_"+question.id+">"+
"<tr><p name='question' id=question_"+question.id+">"+
(question.question_text) +
"</p></tr><tr id=answer_"+question.id+"></tr>");
$(question.answers).each(function(index,answer){
$("#answer_"+question.id).append("<td>"+
"<input type='radio' name='answer'id=answer_"+answer.id+">"+
answer.answer_text +
"</input></td>");
});
它顯示一切都好我,與特定的問題é回答。 BT當我把它添加到一個錶行它忽略的一些問題的答案 即
10+10
120 20 30 1
10*10
100 00 20 1
10/10
10-10
請告訴我的解決方案,我怎麼能搞到放置在一個相關的問題
是的,我錯過了關閉表標記。它現在也不工作。實際上我想要做的是我想追加這些問題和答案就像一個測驗模板我做了多個表,並在每張表bcz中單獨回答tr,同時提交測驗我可以很容易地循環測驗id中的表,並從td獲取值,請告訴我是否存在任何其他方式來實現th是測驗顯示和提交任務 –