项目详情:
应用程序框架 - Ionic V3.0
IBM MobileFirst服务器(devKit) - 产品版本:8.0.0.00-20170911-123510
Application Mobilefirst版本 - config.xml -
mfp:platformVersion -8.0.0.00-20170218-003050
插件名称=" cordova-plugin-mfp"规格=" 8.0.2017021815"
它在android中运行良好。但在IOS中,软更新完成后,应用程序屏幕变为空白(黑屏)。杀死并重新启动应用程序后,它开始正常工作。
我在mobilefirst 8应用程序中实现了Direct update
功能,如下所示:
// Direct Update - Used to trigger a request to the MobileFirst Server, to check for updated web resources.
WLAuthorizationManager.obtainAccessToken()
.then(
function () {
console.log("*** Obtained token successfully.");
},
function () {
console.log("*** Failed obtaining token.");
}
);
答案 0 :(得分:1)
这可能与Ionic现在默认使用WKWebView这一事实有关。见https://ionicframework.com/docs/wkwebview/
这是WKWebview上MobileFirst Direct更新的一个已知限制。见https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/product-overview/release-notes/known-issues-limitations/#wkwebview-support-for-ios-cordova-applications
如上所述,请使用wkwebview-engine-localhost插件确保直接更新继续有效。
答案 1 :(得分:0)
它已在最新的IBM MobileFirst版本中修复。