2016-08-18 35 views
-1

IBM工作燈適配器我們得到錯誤,如得到錯誤200,當我打電話與移動Web應用程序

克拉斯{responseHeaders響應:對象,狀態:200,responseText的: 「未定義」,錯誤碼: 「API_INVOCATION_FAILURE」 ERRORMSG: 「不支持的環境」 ...}

,當我們呼籲與移動Web應用程序工作燈適配器

我的代碼:

var resourceRequest = new WLResourceRequest("/adapters/testt/getFeed", WLResourceRequest.GET); 
    resourceRequest.setQueryParameter("params", []); 
    resourceRequest.send().then(
     $scope.branchShowSuccess, 
     $scope.branchShowFailure 
    ); 
} 

$scope.branchShowSuccess = function(result) { 
    alert("success adapter1 "+JSON.stringify(result)); 
    console.log(result); 
} 

$scope.branchShowFailure = function(data) { 
    alert("failure adapter1 "+JSON.stringify(data)); 
    console.log(JSON.stringify(data)); 
} 

我是新來這個IBM工作燈請任何幫助我糾正我的代碼在移動網絡環境不支持

回答

0

WLResourceRequest。您需要改爲使用WL.Client.invokeProcedure。

+0

我們如何從移動網頁中使用WL.Client.invokeProcedure調用JavaAdapter? –

+0

從JavaScript適配器調用Java適配器是不可能的。 –

相關問題