1

我正在尝试 BaaSbox,一个免费的后端即服务。但它没有开箱即用的 Javascript 支持,我可以立即使用(但只有 iOS 和 Android)

我无法从 javascript 发送正确的 curl 命令,有人碰巧知道一个好的资源或一个简单的工作 $.ajax 模板吗?我尝试了一些来自 stackoverflow 的示例,但没有一个专门针对 BaaSbox。

我已经尝试按照他们网站上的 Java 说明进行操作。只是做一个简单的登录工作,但我不断从服务器收到错误的响应。

或者另一方面,有人知道 BaaSbox 的免费替代品吗?我只想能够将它安装在我自己的服务器上,没有付费计划或其他任何东西。

4

1 回答 1

2

在下载页面有一个 JS SDK 的初步版本(几天前添加的)。文档正在编写中,但是在 zip 文件中您可以找到一个简单的示例。

例如执行注册:

//set the BaasBox parameters: these operations initialize the SDK
BaasBox.setEndPoint("http://localhost:9000"); //this is the address of your BaasBox instance
BaasBox.appcode = "1234567890"; //this is your instance AppCode 

//register a new user
BaasBox.createUser("user", "pass", function (res, error) {              
    if (res)  console.log("res is ", res);
    else      console.log("err is ", error);
});

现在您可以登录 BaasBox

//perform a login
$("#login").click(function() {
    BaasBox.login("user", "pass", function (res, error) {
        if (res) {
                        console.log("res is ", res);
                        //login ok, do something here.....
                 } else {
                        console.log("err is ", error);
                        //login ko, do something else here....
                 }
    });

用户登录后,他可以加载属于集合的文档(SDK 自动为您管理会话令牌):

BaasBox.loadCollection("catalogue", function (res, error) { //catalogue is the name of the Collection                   
        if (res) {
            $.each (res, function (i, item) {
                console.log("item " + item.id);  //.id is a field of the Document   
            });     
        } else {            
            console.log("error: " + error);             
        }       
});

然而,在底层 SDK 使用 JQuery。因此,您可以检查它以了解如何使用 $.ajax 调用 BaasBox。

例如 creatUser() 方法(注册)是:

    createUser: function (user, pass, cb) {

        var url = BaasBox.endPoint + '/user'

        var req = $.ajax({
            url: url,
            method: 'POST',
            contentType: 'application/json',
            data: JSON.stringify({
                username: user,
                password: pass
            }),
            success: function (res) {

                var roles = [];

                $(res.data.user.roles).each(function(idx,r){
                    roles.push(r.name);
                })

                setCurrentUser({"username" : res.data.user.name, 
                                "token" : res.data['X-BB-SESSION'], 
                                "roles": roles});

                var u = getCurrentUser()
                cb(u,null);
            },
            error: function (e) {
                cb(null,JSON.parse(e.responseText))
            }
        });

    } 
于 2014-03-29T12:27:54.343 回答