1

我们的 WEB 应用程序使用 xForms 来验证和显示不同国家的不同模板。我必须使用 Sencha Touch 来实现同样的事情。我在各种论坛上搜索,但找不到任何明确的答案。

WEB/ioS/Android 应用程序使用的 xForms 如下所示。

<html xmlns="http://www.w3.org/1999/xhtml" 
      xmlns:xf="http://www.w3.org/2002/xforms" 
      xmlns:xs="http://www.w3.org/2001/XMLSchema" 
      xmlns:xrsi="http://www.westernunion.com/schema/xrsi" 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"> 
  <head> 
    <title>Bank Account details</title> 
    <xf:model>
      <xf:instance xmlns=""> 
        <bank_account> 
          <bank_name/>
          <swift_code/> 
          <account_number/> 
        </bank_account> 
      </xf:instance> 
      <xf:bind nodeset="bank_name" 
           type="xs:string" 
           required="true()" 
           constraint="string-length(.) &lt; 31"/> 
      <xf:bind nodeset="bank_code" 
           type="xrsi:alphanum" 
           required="true()" 
           constraint="string-length(.) &lt; 12"/> 
      <xf:bind nodeset="account_number" 
           type="xrsi:alphanum" 
           required="true()" 
           constraint="string-length(.) &lt; 25"/>
    </xf:model> 
  </head>
  <body> 
    <section> 
      <dl>
    <dt>Bank Name*:</dt> 
    <dd> 
      <xf:input ref="bank_name" 
                incremental="true" 
                xxforms:maxlength="30"> 
        <xf:alert>Bank Name is required</xf:alert>
        <xf:hint>Bank Name</xf:hint> 
      </xf:input> 
    </dd> 
    <dd> 
      <xf:input ref="bank_code" 
                incremental="true" 
                xxforms:maxlength="11"> 
        <xf:alert>AlphaNumeric</xf:alert> 
        <xf:hint>BIC</xf:hint> 
      </xf:input>
    </dd>

    <dd> 
      <xf:input ref="account_number" 
                incremental="true" 
                xxforms:maxlength="24">
        <xf:alert>IBAN is AlphaNumeric</xf:alert>
        <xf:hint>IBAN</xf:hint>
      </xf:input> 
    </dd> 
      </dl> 
    </section>
  </body>
</html>

我想在我的 sencha touch 应用程序中实现类似的功能。有什么好的方法可以实现吗?任何指针都会有很大帮助。

以下是 2 个有用的链接。

有人在他们的 Web 应用程序中使用 XForms 吗? http://www.sencha.com/forum/archive/index.php/t-26497.html

谢谢 Gendaful

4

1 回答 1

0

在我看来,您应该能够使用XSLTFORMS,它是 xforms 的客户端实现,并将其集成到您的 sencha touch 应用程序中。

我自己没有尝试过,但前一段时间我做了一些研究,XSLTFORMS 似乎运行良好。

于 2013-09-13T11:07:53.017 回答