=IFERROR(VLOOKUP(H$1,INDIRECT(ADDRESS($F2,1)):INDIRECT(ADDRESS($G2,2)),2,0))
执行上面的代码后,我发现Web服务响应未定义。我正在使用angularjs来构建跨平台项目。
答案 0 :(得分:0)
虽然在评论中建议angular有一个$http
模块,可以用于异步请求。然而,如果我看到你提到的代码POST
请求它似乎不是因为你错过了type:"POST"
。
您可以使用$http
:
$http({
url : "http://edudux.com/manage/index.php?/api/login",
method: 'POST'
}).then(function(response){
console.log(response.data);
});