我对 SWP 非常陌生,对于将从 URL 获得的参数传递给 SPARQL 查询以使其更具动态性,我感到非常困惑。这是我正在使用的 SWP 文件:
<!-- Navigate to http://localhost:8083/tbl/tutorial.swp?test=Mate in a web browser -->
<ui:setContext
xmlns:kennedys="http://topbraid.org/examples/kennedys#"
ui:queryGraph="<http://topbraid.org/examples/kennedys>"
let:query = "{= ui:param('test', xsd:string)}"
let:helloThere = "{= xsd:string('hello')}"
>
<h1>G'day, {= ?helloThere}!</h1>
<table>
<thead>
<tr>
<th data-field="propertyID">
Property ID
</th>
<th data-field="property">
Property
</th>
<th data-field="valueID">
Value ID
</th>
<th data-field="value">
Value
</th>
</tr>
</thead>
<ui:forEach ui:resultSet="{#
SELECT *
WHERE {
<http://topbraid.org/examples/kennedys#AlfredTucker> ?property ?value .
}
}">
<tr>
<td>{= xsd:string(?property) }</td>
<td>{= ui:label(?property) }</td>
<td>{= xsd:string(?value) }</td>
<td>{= ui:label(?value) }</td>
</tr>
</ui:forEach>
</table>
</ui:setContext>
这一切都很好,很花哨,但我试图将一个变量传递给 SPARQL 查询。我试过这样的事情:
<ui:forEach ui:resultSet="{#
SELECT *
WHERE {
<http://topbraid.org/examples/kennedys#" + {= ?query} + "> ?property ?value .
}
}">
<tr>
<td>{= xsd:string(?property) }</td>
<td>{= ui:label(?property) }</td>
<td>{= xsd:string(?value) }</td>
<td>{= ui:label(?value) }</td>
</tr>
</ui:forEach>
不幸的是,这不起作用。我想知道如何将变量传递到 SPARQL 查询中。