答案 0 :(得分:0)
Apparently 没有 cancelled
回调。
然而--as also pointed out by bojeil-google --,一个未记录的 uiChanged
回调可以被黑客入侵以捕获取消状态。
const uiConfig = {
callbacks: {
uiChanged: function (fromPageId, toPageId) {
console.log('uiChanged from:', fromPageId)
console.log('uiChanged to:', toPageId)
},
uiShown: function() {
console.log('ui is shown')
},
}
这是为我做的。