将 Url 的查询结果格式化为 Semantic MediaWiki 中的给定字符串
Formatting query result of Url as given string in Semantic MediaWiki
我想在 Semantic MediaWiki 的页面上嵌入询问查询的结果。结果列的类型为 Url,如 [[Has type:Url]]
。但是,在嵌入代码时,我不想明确显示 URL ,因为它很长,而是作为固定字符串(例如 "Website" ),就像我输入的那样:
[https://someURL.com 网站]
我试图在 属性 分配本身的页面上设置名称,方法是包括:
[[Has website::https://someURL.com | Website]]
这是示例查询的基本结构。
{{#ask: [[Has website_example::true]]
|?Has website
|format=table
|limit=50 |offset=0
|link=all
|sort=
|order=asc
|headers=show
|searchlabel=... further results
|class=sortable wikitable smwtable
}}
是否可以将 ?Has website
呈现为 link,在 table 中使用文本 "Website"?
您可能必须通过 'template' 格式,并根据此模板重建您的行。
示例:
|-
! [{{{1}}} | Website]
然后用 table 页眉和页脚包围您的 'ask' 请求。
我想在 Semantic MediaWiki 的页面上嵌入询问查询的结果。结果列的类型为 Url,如 [[Has type:Url]]
。但是,在嵌入代码时,我不想明确显示 URL ,因为它很长,而是作为固定字符串(例如 "Website" ),就像我输入的那样:
[https://someURL.com 网站]
我试图在 属性 分配本身的页面上设置名称,方法是包括:
[[Has website::https://someURL.com | Website]]
这是示例查询的基本结构。
{{#ask: [[Has website_example::true]]
|?Has website
|format=table
|limit=50 |offset=0
|link=all
|sort=
|order=asc
|headers=show
|searchlabel=... further results
|class=sortable wikitable smwtable
}}
是否可以将 ?Has website
呈现为 link,在 table 中使用文本 "Website"?
您可能必须通过 'template' 格式,并根据此模板重建您的行。
示例:
|-
! [{{{1}}} | Website]
然后用 table 页眉和页脚包围您的 'ask' 请求。