Гость
Форумы / XML, XSL, XPath, XQuery [игнор отключен] [закрыт для гостей] / Значения из инпут контрола не передаются в url во время сабмита. / 2 сообщений из 2, страница 1 из 1
08.06.2016, 14:39
    #39252849
fatum2002
Участник
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Значения из инпут контрола не передаются в url во время сабмита.
Мой код выглядит так:
Код: html
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
xquery version "3.0";

declare option exist:serialize "method=xhtml media-type=application/xhtml+xml indent=yes";

import module namespace xmldb="http://exist-db.org/xquery/xmldb";

declare variable $collection as xs:string := '/db/junitReports';
(:declare variable $ttest as xs:string := 'RwillgEIFKFX';:)

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:bf="http://betterform.sourceforge.net/xforms" xmlns:xf="http://www.w3.org/2002/xforms" bf:toaster-position="tl-down">
    <head>
        <title>IB interfaces regression testing report</title>
        <meta name="author" content="test"/>
        <meta name="author" content="test"/>
        <meta name="description" content="IB interfaces regression testing report"/>
        <link rel="stylesheet" type="text/css" href="styles/demo.css"/>
        
        <!-- INPUT CONTROLS -->
        <xf:model>
            <xf:instance>
                <data xmlns="">
                    <InterfaceName constraint="true" readonly="false" required="false" relevant="true">
                    </InterfaceName>
                    <trigger1 constraint="true" readonly="false" required="false" relevant="true">
                    </trigger1>
                </data> 
            </xf:instance>
            
            <xf:instance id="table" xmlns="">
                <data>
                </data>
            </xf:instance>

            <xf:bind nodeset="InterfaceName" type="string">
            </xf:bind>
            
            <xf:submission id="showTable"
                        method="post" 
                        replace="instance"
                        ref="instance('table')"
                        instance="table">
                <xf:resource value="concat('/exist/rest/db/xquery/returnTable.xq?interface=',InterfaceName)"/>        
            </xf:submission>
        </xf:model>
    </head>
    
    
    <body class="soria" style="margin:30px;">
        <div class="Headline">IB test report</div>
        <div class="description">
            <p>You can restrict report output:</p>
        </div>    
        <p>2. By typing in particular interface name</p>
        <div class="Interface">
            <xf:input id="InterfaceName" ref="InterfaceName" incremental="false">
                <xf:label></xf:label>
                <xf:hint>(S|R)xxxxxYYYZZZ</xf:hint>
                <xf:help>Enter interface name</xf:help>
                <xf:alert>Enter interface name</xf:alert>
            </xf:input>
        </div>
        <br/>
        <div>
            <xf:trigger id="trigger1" ref="trigger1" incremental="true">
                <xf:label>Filter output</xf:label>
                <xf:hint>a Hint for this control</xf:hint>
                <xf:help>help for trigger1</xf:help>
                <xf:action ev:event="DOMActivate">
                    <xf:send submission="showTable"/>
                </xf:action>
            </xf:trigger>
        </div>
        

        <div>
            <table border="1">
                <thead>
                    <tr>
                        <th>Inteface Name</th>
                        <th>Test Date</th>
                        <th>Test Result</th>
                        <th>Report Link</th>
                    </tr>
                </thead>
                <tbody xf:repeat-nodeset="instance('table')//result">
                   <tr>
                        <td>
                            <xf:output ref="interfaceName"></xf:output>   
                        </td>
                        <td>
                            <xf:output ref="reportDate"></xf:output> 
                        </td>
                        <td>
                            <xf:output ref="testResult"></xf:output>  
                        </td>
                        <td>
                            <li>
                                <xf:output ref="fileLink"></xf:output>
                            </li>
                        </td>
                    </tr>
                </tbody>
            </table>
        </div>
      </body>
</html>



Firefox firebug показывает, что после ввода значения в инпут контрол что-то назад передается:
callCount=1
windowName=
c0-scriptName=Flux
c0-methodName=setUIControlValue
c0-id=0
c0-param0=string: InterfaceName
c0-param1=string: ttttttttt
c0-param2=string:2d8f7e0b4b23bcfcd52e490bd384a3388c352dbd7c1a3ad44e60c4ec08c6303e155e421bf7241e4f1d73aebf9c695b7b8aa2ac8f7be29ca652545dfa3dd46d32
batchId=2
instanceId=0
page=%2Fexist%2Fapps%2Fbetterform%2Fdemo%2FtestReport.xq
scriptSessionId=o*8F8W0cBrAmHI7R9CvixNx0Lkl/qyWOLkl-P1MkYdOmi


Но после ввода значения и нажатия кнопки юрл остается таким:
"resource-uri":" http://localhost:8080/exist/rest/db/xquery/returnTable.xq?interface="

То есть, значение из IntefaceName не конкатенируется с url.
...
Рейтинг: 0 / 0
08.06.2016, 14:53
    #39252876
fatum2002
Участник
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Значения из инпут контрола не передаются в url во время сабмита.
Нужно было сделать вот так:
<xf:resource value="concat('/exist/rest/db/xquery/returnTable.xq?interface=', instance('defaultInstance')//InterfaceName )"/>
...
Рейтинг: 0 / 0
Форумы / XML, XSL, XPath, XQuery [игнор отключен] [закрыт для гостей] / Значения из инпут контрола не передаются в url во время сабмита. / 2 сообщений из 2, страница 1 из 1
Целевая тема:
Создать новую тему:
Автор:
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]