以下是这种情况:
1.已部署apple-app-site-association
的域A。
2.部署了apple-app-site-association
的域B。
3.应用程序转到域A.
4.域A响应302,并重定向到域B.
所以,我的问题是,当App转到域A时,响应302会忽略postData(order: orderInfo) {
let uid = firebase.auth().currentUser.uid;
// Change this next line to save the transaction
var newRef = this.db.list('/transactions').push({
currency: order.currency,
total: order.total,
rate: order.rate,
uid: uid
});
// get just the key reference
var newKey= newRef.key;
//then change this refer
console.log(newKey);
//To update you would change the next line
this.db.list('transactionsPerUser').update(newKey, order.newInfo);
}
吗?那么,应用程序无法指导域A的深层链接?谢谢。
答案 0 :(得分:1)
为域正确配置通用链接后,将在操作系统级别处理到应用程序的路由。
这意味着如果Domain A Universal Links配置有效,则甚至不会请求Web URL - 您将无法获得足够的302重定向,因为该应用程序已经在此时打开。