api.ajax({ url:getDataUrl() + ‘sets‘,//"relational_tree", method:‘GET‘, headers:{ "Content-Type":"application/json", "X-APICloud-AppId":getAppId(),//要查询的应用的ID "X-APICloud-AppKey":getAppKeyInSha1()//对应应用的Sha计算值 }, dataType:‘json‘ }, function(ret,err){ if (ret){ alert("正确:\n"+JSON.stringify(ret) ) ; }else{ alert("失败:\n"+JSON.stringify(err) ) ; } });
如上所示,可以用Rest对象查询自己创建的其他应用的数据库值
时间: 2024-10-19 11:33:50