我在我的 Sencha Touch 2 应用程序中实现 Stripe,他们要求我在相应的输入字段上设置自定义 data- HTML5 属性,如下所示:
<input type="text" size="20" data-stripe="number"/>
<input type="text" size="4" data-stripe="cvc"/>
<input type="text" size="2" data-stripe="exp-month"/>
<input type="text" size="4" data-stripe="exp-year"/>
我在视图中定义了我的输入字段,如下所示:
{
xtype:'textfield',
name:'expirationYear',
'data-stripe':'exp-year',
label:'Expiration',
placeHolder:'Expiration Year (YYYY)'
}
我正在尝试添加:
'data-stripe':'exp-year',
但这自然不起作用,因为它不是有效的煎茶属性。如何在 Sencha 文本字段上设置自定义属性以确保呈现的输入字段与上面的 HTML 中的一样?