Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/402.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/magento/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript Azure MobileService EasyApi java.lang.interruptedException_Javascript_Java_Azure_Express_Azure Mobile Services - Fatal编程技术网

Javascript Azure MobileService EasyApi java.lang.interruptedException

Javascript Azure MobileService EasyApi java.lang.interruptedException,javascript,java,azure,express,azure-mobile-services,Javascript,Java,Azure,Express,Azure Mobile Services,在我的移动服务中,我定义了新的easy api“test”。 现在,我正试图从Android调用简单的请求来填充我传递的对象: Exists result = mClient.invokeApi("test","ID" ,Exists.class).get(); 存在的地方定义为 public class Exists { public boolean Exists; } 我的test.js如下所示: module.exports = { "post": function

在我的移动服务中,我定义了新的easy api“test”。 现在,我正试图从Android调用简单的请求来填充我传递的对象:

  Exists result = mClient.invokeApi("test","ID" ,Exists.class).get();
存在的地方定义为

public class Exists {
    public boolean Exists;
}
我的test.js如下所示:

module.exports = {
    "post": function (req, res, next) {
 res.json({"Exists": "true"});
 res.send();
    }
};

这个返回给我java.lang.interruptedException。有人能告诉我为什么以及如何修复它吗?

解决了,服务被关闭了