【发布时间】:2020-07-14 17:55:09
【问题描述】:
我正在尝试编写一个组件匹配,其中我只匹配 apple-app-site-association 文件中 URL 的 quesid=2109061920 参数。我希望所有这些过滤都在 apple-app-site-association 文件中完成,而不是在 swift 移动代码库中。
这有点工作,意味着它只过滤带有 quesid 的项目,但我可以在它后面放任何东西,比如 quesid=2109061920777...所以它不是完全匹配
{
"applinks": {
"apps": [],
"details": [
{
"appIDs": [
"***.com.***"
],
"components": [
{
"?": {
"quesid": "2109061920"
},
"comment": "testing"
}
]
}
]
}
}
这也不起作用:
{
"applinks": {
"apps": [],
"details": [
{
"appIDs": [
"***.com.***"
],
"components": [
{
"/": "/MyChart/*",
"?": "quesid=2109061920",
"comment": "testing"
}
]
}
]
}
}
关于我缺少什么的任何想法?
【问题讨论】: