菜鸟教程小白 发表于 2022-12-13 17:14:44

ios - 万能链接。无与伦比的性格


                                            <p><p>我在尝试匹配通用链接文件 (apple-app-site-association) 的 <strong>'#'</strong> 字符时遇到问题。</p>

<p>对于像 <em>domain/#/results/parameters</em> 这样的 URL,我一直在尝试:</p>

<ul>
<li>/?/results/*</li>
<li>/*/results/*</li>
<li>/#/results/*</li>
<li>/\#/results/*</li>
<li>/%23/results/*</li>
</ul>

<p>但没有一个对我有用。</p>

<p>烦人的一点是两个第一个匹配的URL几乎相等<em>domain/a/results/parameters</em>(用什么字符代替#)</p>

<p>如何匹配#?</p>

<p>问候</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>@salazar,Apple 终于听到了我们的疑问。现在您可以从 iOS 13 以组件的形式指定片段</p>

<p>apple-app-site-association 结构是这样改的,</p>

<pre><code> &#34;applinks&#34;: {
   &#34;details&#34;: [
   {
    &#34;appIDs&#34;: [ &#34;TeamID.com.example.myapp&#34;],
    &#34;components&#34;: [
          {
            &#34;/&#34;: &#34;/path/#mypath/*&#34;,
            &#34;#&#34;: &#34;*fragment&#34;
          }
      ]
      }
    ]
}
}
</code></pre>

<p>您可以在此处找到有关通用链接的更多信息 - <a href="https://developer.apple.com/videos/play/wwdc2019/717/" rel="noreferrer noopener nofollow">https://developer.apple.com/videos/play/wwdc2019/717/</a> </p>

<p>注意 - 在撰写此答案时,文档尚未更新。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 万能链接。无与伦比的性格,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38139732/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38139732/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 万能链接。无与伦比的性格