0
私はJsonオブジェクトからquesionを要求する調査のためのフォームを作成しています。 私のコードはこれまでのところ動作しますが、私はポリマーやJSの機能を知っていないので、より美しく見せてくれます。 スクリーンショット:Polymer:javascriptを使って紙のチェックボックスを作成する
スクリプト:
var questions = [
{
"question": "What do you want for christmas?"
, "mode": "radio"
, "answers": ["Nintendo", "iPony", "You", "A tiny little Shotgun"]
}
];
console.log(questions);
function foo() {
var question = document.createElement('div');
question.className = 'question';
question.innerHTML = "Frage:" + questions[0].question;
console.log(question);
var surveyQuestions = document.getElementById("survey-questions");
surveyQuestions.appendChild(question);
var answers = document.createElement('div');
answers.className = "answers";
questions[0].answers.forEach(buildRadio);
surveyQuestions.appendChild(answers);
function buildRadio(item, index) {
var paperCheckbox = document.createElement('paper-checkbox');
var br = document.createElement('br');
paperCheckbox.setAttribute("name",item);
paperCheckbox.setAttribute("value",item);
paperCheckbox.getElementsByTagName('div')[1].innerHTML = item;
paperCheckbox.children[1].innerHTML = item;
answers.appendChild(paperCheckbox);
answers.appendChild(br);
}
}
私の問題のためのもう一つの小さなexmaple:
<div class="card"></div>
が作成
<div class="card style-scope survey-app"></div>
しかし
var card = document.createElement('div');
card.className = "card";
は唯一のベストプラクティスがどうなるか
<div class="card"></div>
を作成しますか?
['dom-repeat'](https://www.polymer-project.org/1.0/docs/devguide/templates#dom-repeat)を使ってみましたか? – Alan
あなたの目標は何ですか?ラジオボタンをクリックしたら、新しいカードを作成しますか? –
私はdom-repeatを試しませんでした。私はそれを確認します、ありがとう!この時点で、JSonオブジェクトからフォームを作成したいだけです。その後、人間のコンピュータインタラクションの研究のためのWebアプリケーションになります。 – froehli