快应用开放内容搜索, 爬虫可以通过技术手段访问快应用页面,为内容建立索引。当用户在各个场景触发关键字时,可以展示在搜索列表中,并能直达快应用。爬虫访问快应用页面是,会携带 user-agent: qa-crawler
。
快应用工程 src
目录下面有 sitemap.json
文件,用于配置快应用页面是否能被索引的规则。
rules 字段定义了索引规则
属性 | 类型 | 必填 | 默认值 | 取值 | 取值说明 |
---|---|---|---|---|---|
rule | string | 是 | "enable" | "enable"、"disable" | 命中该规则的页面是否能被索引 |
page | string | 是 | "*"、页面的路径 | * 表示所有页面均可收录,暂时不支持正则表达式 | |
params | string[] | 否 | [] | 页面参数, 仅需提供 key 值即可,参考https://doc.quickapp.cn/tutorial/platform/url-jump-configuration.html?h=router | |
pic | string | 否 | 页面缩略图,用于搜索结果展示 icon | ||
description | string | 否 | 页面描述,用户搜索结果摘要 | ||
lastmod | string | 否 | 上次修改时间,用于引擎抓取优化 |
{
"rules": [
{ "rule": "enable", "page": "path/to/A", "params": ["foo", "bar"] },
{ "rule": "disable", "page": "path/to/B" },
{ "rule": "enable", "page": "*" }
]
}
* `path/to/A?foo=1&bar=2` => 优先被索引
* `path/to/A` => 被索引
* `path/to/B?foo=1` => 不被索引
* `path/to/C` => 被索引
this.$page.setTitleBar
,share.share(OBJECT)
保证抓取页面title的准确性