我想创建一个可以递增的变量,这将允许我传入我的对象的对象,以便将它们1到1显示给每个团(例如P1 => P2,P2 => P3等。等等。
This.question = {p1: {…}, p2: {…}, p3: {…}, p4: {…}, p5: {…}, …} (etc)
我的代码:
var affichePage = this.questionnaire.Profil;
for(var question in this.questionnaire.Profil["p2"]){
this.current=this.questionnaire.Profil["p2"][question];
console.log(question, " -> " + this.questionnaire.Profil);
break;
}`
答案 0 :(得分:0)
var This = {};
This.question = { p1: { a: "p1" }, p2: { a: "p2" }, p3: { a: "p3" }, p4: { a: "p4" }, p5: { a: "p5" } };
for (var question in This.question) {
if (This.question.hasOwnProperty(question)) {
console.log(question + " -> " + This.question[question].a);
}
}
如果我理解你的问题,那么这个代码片段将有助于解决您的问题。只需根据您的要求更改“a”属性。