清单文件中有一段代码,用于处理来自移动网络的深层链接。
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="www.myexampleurl.com" />
<data android:pathPattern="/search/.*" />
</intent-filter>
通常,这应该在应用程序中打开搜索页面。单击搜索按钮时,会发现页面重定向(302)到 .js 文件中,然后找到其中提到的特定路径清单200被调用。因此没有显示选择器弹出窗口。是否存在任何解决方案来处理页面重定向或后端需要任何解决方法?