2017-06-07 55 views
0

我想查询一个网站并生成html,我是xquery的新手。 我使用exdb存在,我试图使用氧气,但一直存在的数据库的麻烦。 除此之外我不明白为什么这个代码不EXIDEXquery错误Xpst0003语法错误

xquery version "3.0"; 
import module namespace http = "http://exist-db.org/xquery/httpclient"; 
import module namespace util = "http://exist-db.org/xquery/util"; 

declare option exist:serialize "method=xhtml media-type=text/html"; 

let $spreadsheet-url := 'https://docs.google.com/spreadsheets/d/1rNHWMonN4RSnvxMYpkqeGHG_bBz-WpxCI-2_Wc/gviz/ tq?tqx=out:json' 



let $spreadsheet-response := http:get(xs:anyURI($spreadsheet-url), true(), <Headers/>) 

let $body := util:base64-decode($spreadsheet-response/httpclient:body/text()) 

let $x := parse-json(substring-before(substring-after($body,'('),');')) 

let $odk-server:="http//192.168.0.104" 

let $amp:="&amp;" 

let $gmap-api-key:="AIzaSyCYC9h9pMGGvREo................" 

return 
    <html> 
     <head> 
      <title>Results</title> 
     </head> 
     <body> 
      <table> 
       <tr> 
        <th>Mapa</th> 
        <th>Detalhes</th> 
       </tr> 
       { 
        for $data in $x?table?rows?* 
         let $latitude := $data?c(11)?v 
         let $longitude := $data?c(12)?v 
         let $map-url := concat("https://maps.googleapis.com/api/staticmap?center=",$latitude,",", $longitude, $amp, "zoom=18", $amp, "size=400x400", $amp, "markers=color:blue|", $latitude,",",$longitude, $amp,"key=",$gmap-api-key) 

         let $name:= $data?c(8)?v 
         let $age:=$data=?c(9)?v 
         let $date:=$data?c(10)?f 
         let $image:= replace($data?c(15)?v,"http://aggregate.defaultdomain", $odk-server) 
         return 
          <tr> 
           <td><img src='{$map-url}' alt="map"/></td> 
           <td> 
            <img src='{$image}' height="200" width="200" alt="imagem"/> 
           <p>{$name}</p><p>{$age}</p><p>{$date}</p> 
           </td> 
           <td> 
           </td> 
          </tr> 

       } 

      </table> 

     </body> 
    </html> 

工作,它给了我34行说,预计“”发现“*”的错误,

enter image description here

+0

是否有你在这里展示的部分之前更多的代码? XQuery脚本不能以'return'开头。 –

+0

@LeoWörteler是的,但它只有它的diretores和地图APIs代码 – props

+0

哪个版本的eXist? – joewiz

回答

1

在下一行末尾有一个拼写错误,即在$amp"key="中变量和字符串之间缺少逗号。

let $map-url := concat("https://maps.googleapis.com/api/staticmap?center=",$latitude,",", 
     $longitude, $amp, "zoom=18", $amp, "size=400x400", $amp, "markers=color:blue|", 
     $latitude,",",$longitude, $amp"key=",$gmap-api-key) 

其他的一切在句法上似乎都是正确的。

如果EXIDE不支持语法$array?*为得到一个数组的所有条目,你可以尝试从

for $data in $x?table?rows?* 
[...] 

重写它

let $rows := $x?table?rows 
for $i in 1 to array:size($rows) 
let $data := $rows($i) 
[...] 
+0

谢谢,我编辑,但错误仍然存​​在 – props

+0

看起来像一个bug,BaseX接受语法。 –

+0

是的,如果我删除for()行,它的工作原理,它有什么关系? – props