Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/109.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
Ios 如何在Heroku上运行云代码?_Ios_Swift_Heroku_Parse Cloud Code_Parse Server - Fatal编程技术网

Ios 如何在Heroku上运行云代码?

Ios 如何在Heroku上运行云代码?,ios,swift,heroku,parse-cloud-code,parse-server,Ios,Swift,Heroku,Parse Cloud Code,Parse Server,随着Parse宣布退役,我已经将我的Parse服务器迁移到Heroku上。我对Heroku还不太了解,不知道它们是否有类似于云代码的功能,但我知道几个月前的一个特性,它允许您在任何node.js环境中运行云代码,特别是Heroku 我的困境是,在了解此功能之前,我已经将我的服务器从parse迁移到Heroku:/,因此我无法从终端运行任何解析云代码,因为那里不再有现有的服务器。所以问题是,我如何在Heroku中模拟下面的云代码&我如何调整我的swift 云代码: // Use Parse.Clo

随着Parse宣布退役,我已经将我的Parse服务器迁移到Heroku上。我对Heroku还不太了解,不知道它们是否有类似于云代码的功能,但我知道几个月前的一个特性,它允许您在任何node.js环境中运行云代码,特别是Heroku

我的困境是,在了解此功能之前,我已经将我的服务器从parse迁移到Heroku:/,因此我无法从终端运行任何解析云代码,因为那里不再有现有的服务器。所以问题是,我如何在Heroku中模拟下面的云代码&我如何调整我的swift

云代码:

// Use Parse.Cloud.define to define as many cloud functions as you want.
// For example:

Parse.Cloud.define("isLoginRedundant", function(request, response) {
    Parse.Cloud.useMasterKey();
    var sessionQuery = new Parse.Query(Parse.Session);
    sessionQuery.equalTo("user", request.user);
    sessionQuery.find().then(function(sessions) {
        response.success( { isRedundant: sessions.length>1 } );
    }, function(error) {
        response.error(error);
    });
});
    PFUser.logInWithUsernameInBackground(userName!, password: passWord!) {
        (user, error) -> Void in
        if (user != nil) {
            // don't do the segue until we know it's unique login
            // pass no params to the cloud in swift (not sure if [] is the way to say that)
            PFCloud.callFunctionInBackground("isLoginRedundant", withParameters: [:]) {
                (response: AnyObject?, error: NSError?) -> Void in
                let dictionary = response as! [String:Bool]
                var isRedundant : Bool
                isRedundant = dictionary["isRedundant"]!
                if (isRedundant) {
                    // I think you can adequately undo everything about the login by logging out
                    PFUser.logOutInBackgroundWithBlock() { (error: NSError?) -> Void in
                        // update the UI to say, login rejected because you're logged in elsewhere
                        // maybe do a segue here? 
                        let redundantSession: String = "you are already logged in on another device"
                        self.failedMessage(redundantSession)

                        self.activityIND.stopAnimating()

                        self.loginSecond.userInteractionEnabled = true
                    }
                } else {
                    // good login and non-redundant, do the segue 
                    self.performSegueWithIdentifier("loginSuccess", sender: self) 
                } 
            } 
        } else {
            // login failed for typical reasons, update the UI 
            dispatch_async(dispatch_get_main_queue()) {

                self.activityIND.stopAnimating()

                self.loginSecond.userInteractionEnabled = true

                if let message = error?.userInfo["error"] as? String
                    where message == "invalid login parameters" {
                        let localizedMessage = NSLocalizedString(message, comment: "Something isn't right, check the username and password fields and try again")
                        print(localizedMessage)
                        self.failedMessage(localizedMessage)
                }else if let secondMessage = error?.userInfo["error"] as? String
                    where secondMessage == "The Internet connection appears to be offline." {
                    self.failedMessage(secondMessage)
                }
            }
        }
    }
这是我在xcode中的swift:

// Use Parse.Cloud.define to define as many cloud functions as you want.
// For example:

Parse.Cloud.define("isLoginRedundant", function(request, response) {
    Parse.Cloud.useMasterKey();
    var sessionQuery = new Parse.Query(Parse.Session);
    sessionQuery.equalTo("user", request.user);
    sessionQuery.find().then(function(sessions) {
        response.success( { isRedundant: sessions.length>1 } );
    }, function(error) {
        response.error(error);
    });
});
    PFUser.logInWithUsernameInBackground(userName!, password: passWord!) {
        (user, error) -> Void in
        if (user != nil) {
            // don't do the segue until we know it's unique login
            // pass no params to the cloud in swift (not sure if [] is the way to say that)
            PFCloud.callFunctionInBackground("isLoginRedundant", withParameters: [:]) {
                (response: AnyObject?, error: NSError?) -> Void in
                let dictionary = response as! [String:Bool]
                var isRedundant : Bool
                isRedundant = dictionary["isRedundant"]!
                if (isRedundant) {
                    // I think you can adequately undo everything about the login by logging out
                    PFUser.logOutInBackgroundWithBlock() { (error: NSError?) -> Void in
                        // update the UI to say, login rejected because you're logged in elsewhere
                        // maybe do a segue here? 
                        let redundantSession: String = "you are already logged in on another device"
                        self.failedMessage(redundantSession)

                        self.activityIND.stopAnimating()

                        self.loginSecond.userInteractionEnabled = true
                    }
                } else {
                    // good login and non-redundant, do the segue 
                    self.performSegueWithIdentifier("loginSuccess", sender: self) 
                } 
            } 
        } else {
            // login failed for typical reasons, update the UI 
            dispatch_async(dispatch_get_main_queue()) {

                self.activityIND.stopAnimating()

                self.loginSecond.userInteractionEnabled = true

                if let message = error?.userInfo["error"] as? String
                    where message == "invalid login parameters" {
                        let localizedMessage = NSLocalizedString(message, comment: "Something isn't right, check the username and password fields and try again")
                        print(localizedMessage)
                        self.failedMessage(localizedMessage)
                }else if let secondMessage = error?.userInfo["error"] as? String
                    where secondMessage == "The Internet connection appears to be offline." {
                    self.failedMessage(secondMessage)
                }
            }
        }
    }

我首先签出并阅读
解析服务器
。Parse server支持开箱即用的云代码,您只需在Parse server配置中指定包含函数和触发器的文件。您发布的关于parse和heroku之间集成的链接与
parse server
无关