私はextjsで働いています。10個の質問とそれに関連するオプションを表示しています。送信ボタンをクリックすると、選択したラジオボタンの値を取得したい。私はビューフォームas=QbqnsView.jsを持っています
Ext.define('Balaee.view.qb.qbqns.QbqnsView',
{
extend:'Ext.view.View',
id:'qbqnsViewId',
alias:'widget.QbqnsView',
//store:'kp.PollStore',
store:'qb.QbqnsStore',
config:
{
tpl:'<tpl for=".">'+
'<div id="main">'+
'</br>'+
// '<b>Question :-</b> {pollQuestion}</br>'+
'<b>Question :-</b> {question}</br>'+
'<tpl for="options">'+ // interrogate the kids property within the data
//'<p>  <input type="radio" name="{optionId}"> {option}</p>'+
'<p>  <input type="radio" name="{parent.questionId}"> {option}</p>'+
//'<p>  <input type="radio" name="{questionId}"> {option}</p>'+
'</tpl></p>'+
'<p>---------------------------------------------------------</p>'+
'</div>'+
'</tpl>',
itemSelector:'div.main',
}
Qbqns.js =
Ext.define('Balaee.view.qb.qbqns.Qbqns',
{
extend:'Ext.form.Panel',
requires:[
'Balaee.view.qb.qbqns.QbqnsView'
],
id:'qbqnsId',
alias:'widget.Qbqns',
title:'Qbqns',
//height:400,
items:[
{
xtype:'QbqnsView',
},
],//end of items square
buttons:[
{
xtype:'button',
fieldLabel:'Vote',
name:'vote',
formBind:true,
text:'submit',
// action:'voteAction',
listeners: {
click: function(btn,e,eOpts) {
var answers =
Ext.core.DomQuery.select("input[type='radio']:checked");
console.log(answers);
}
}
}
]
したがって、送信ボタンをクリックすると、「入力、入力、......」という値が表示されます。それは私に実際のオプション値を与えていません。では、選択したオプションの実際の価値を取得する方法は?私を助けてください