WL.Client.makeRequest()
MFP 8.0中不推荐使用该函数。该函数的用途是什么?如果您有任何文件,请与我分享。
在MFP 8.0中,正确的解决方案是什么
运行迁移命令后mfpmigrate scan
.我变得这样
Create a custom adapter that provides the same functionality
请提供与功能相关的任何文档以及MFP 8.0中的替代解决方案
谢谢 卡尔西克·
WL.Client.makeRequest()
API 允许对端点进行出站调用。
在MFP 8.0中,您应该改用WLResourceRequest
API。此处的 API 文档。
WL.Client.makeRequest((该函数在 MFP 8.0 中已弃用
在IBM MobileFirst Foundation 8.0中,您必须安装mfpdev-cli和cordova-plugin-mfp,然后使用WLResourceRequest。
var resourceRequest = new WLResourceRequest(
"/adapters/JavaAdapter/users",
WLResourceRequest.GET
);
var formParams = {"param1": "value1", "param2": "value2"};
resourceRequest.sendFormParameters(formParams);
resourceRequest.send().then(
onSuccess,
onFailure
)
我建议您浏览一下 MobileFirst Foundation 8.0 从早期版本迁移。看这里:
从早期版本迁移:http://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/upgrading/
迁移现有的 Cordova 和混合应用程序:http://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/upgrading/migrating-client-applications/cordova/#starting-the-cordova-app-migration-with-the-migration-assistance-tool
创建提供相同功能的自定义适配器
了解如何在 IBM MobileFirst 8.0 中创建定制适配器:http://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/adapters/creating-adapters/