Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
319 views
in Technique[技术] by (71.8m points)

javascript - Property "responseType" was accessed during render but is not defined on instance

I am creating a small app for review question generation, and what type of required response to said question via a select list. I cannot access my list however, and I am confused as to why. I have tried a number of things for the past few hours to no avail. I would really like some advice, or even a nice little lesson in how Vuejs 3 seems to operate in this instance as I have only worked with it for 3 days. I know there is most likely a number of other things in this snippet that could be improved upon, but I am at a hard stop currently, and would like responses that deal with this problem please.

JS:

var questionct = 1;

const App = {
    data() {
        return {
            questionct: 0,
            configname: '',
            questions: [],
            test: 'hello!',
            responseType: [
                { value: 'text', name:'Comment' },
                { value: 'number', name:'1-5 Rating' },
                { value: 'both', name: 'Both' }
            ]
        }
    },
    methods: {
        add: function (event) {
            this.questions.push({ id: this.questionct, title: 'Review Question '+this.questionct+':', rquestion: '',response: '' });
            this.questionct++;
            
        },
        save: function (event) {
            
            var postdata = { app: 'employee', task: 'newreviewconfig', data: JSON.stringify(this.questions) };
            
            console.log(JSON.stringify(this.questions));
        },
        remove: function (event){
            this.questions.pop();
            this.questionct--;
            //console.log('remove:'+ct);
        }
    }          
};
function saveConfigCB(json){
    var djson = json_decode_safe(json);
    console.log(djson);
    console.log('save config callback');
}

const bs = {
    props: ['question','response'],
    template: `<div class="rev-quest">
        <h5><strong>{{ question.title }}</strong></h5>
        <input v-model="question.rquestion" placeholder="Type here...." size="80" autocomplete="off">&nbsp
        <label for="rtype">&nbsp Response Type: </label>
        <select id="rtype" >
            <option v-for="(response,rindex) in responseType" :value="response.value" :key="rindex">
                {{ response.name }}
            </option>
        </select>
        </div>`
};
const app = Vue.createApp(App);

app.component('rev-quest', bs);
app.mount('#review-questions');

html:

<div id="review-questions">
  <form method=post action="index.php?app=employee&task=newreviewconfig" id="newreviewconfig" role="form" >
      <br><br><br>
      <rev-quest
          v-for="question in questions" 
          v-bind:key="question.id" 
          v-bind:question="question">
      </rev-quest>
      <br>
      <button type="button" v-on:click="add" class="btn btn-primary">Add Question</button>
      <button type="button" v-on:click="remove" class="btn btn-danger" style="margin-left: 50px">Remove Question</button>
      <button type="button" v-on:click="save" class="btn btn-success pull-right">Create Review Config</button>
</div>
</form>
question from:https://stackoverflow.com/questions/65836564/property-responsetype-was-accessed-during-render-but-is-not-defined-on-instanc

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I've figured out the solution. It appears as if I was reading the error message in the title of the post and expecting it to be somewhere it was not. I expected, since respsonseType was inside of my const App variable, that it was having the issue here. I realize now that the error message is a little counterintuitive. (I think) The variable responseType was being read because the variable app is created into a Vue app. This contains responseType in the parent, but not in the child template, variable bs. When I added it to return in the data() component for bs, it was read by the component properly. I can only assume I will run into future problems separating these templates? Either way it is a good lesson learned about how Vue passes data and the relationships of components to their own data.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...