<question-chrome question="{{question}}">
<paper-input label="{{question.Description}}" id="answer" name="answer" type="number">
{{question.Description}}
</paper-input>
</question-chrome>
其中question-chrome.html包含以下代码:
<template>
<div class="questioncontainer {{question.Type }}" style="padding-top:10px;">
<div class="questiontext">
<span class="questiontitle">{{question.Title}}</span>
</div>
<div class="questionanswers">
<content select=".questionanswers"></content>
</div>
</div>
</template>
我正在使用上面的纸张输入,当我试图从中获取值时,我无法在任何地方找到值。问题元素/对象,我可以看到问题对象的每个其他项目的值。如何获得输入字段的值?在这个例子中,价值是3323。 这个:
检索它的代码我尝试了所有这些:
this.$.answer.value;
通过chrome中的开发人员工具得到的结果为:
Object
AdditionalProperties:null
Answers:Array[0]
Code:720061
Description:"Monetary marks ...."
ExtensionData:null
HasAnswers:false
HasChildren:false
Id:"9999dcc3-d3eb-40cf-8414-05ae385e11cf"
IsDefault:true
IsDeleted:false
.....so on and so forth
我经历了所有这些并没有找到它。它是一种数字类型的字段,所以不确定它是否与它有关。