我正在使用JSBridge自定义Resco的Field Service移动应用程序。在离线模式下,JSBridge似乎没有提供任何调用自定义操作的功能。它只能在在线模式下工作。
有什么方法可以在离线模式下调用自定义操作?
请在下面找到用于在线模式下调用函数的代码。
FS_CustomValidation.fetchMandatoryFields = function () {
MobileCRM.Services.Workflow.Action.execute("<Custom Action name>", null,
function (successResponse) {
var parsedJson = JSON.parse(successResponse.RequiredFieldsJson);
FS_CustomValidation.mandatoryFields = parsedJson["requiredFields"];
}, function (errorResponse) {
MobileCRM.bridge.alert(JSON.stringify(errorResponse));
}, FS_CustomValidation);
}