我正在尝试将数据从Appcelerator Cloud Services传递到Backbone模型。我找不到有关如何执行此操作的文档...

以下是我的模型文件中的配置:

exports.definition = {
    config: {
        "columns": {
            "id":"integer",
            "address":"text",
            "user_completed":"integer"
        },
        "adapter": {
            "type": "", //what can I enter?
            "collection_name": "places"
        }
    },
    extendModel : function(Model) {
        _.extend(Model.prototype, {
            validate : function(attrs) {
                for (var key in attrs) {
                    var value = attrs[key];
                    if (value) {
                        if (key === "item") {
                            if (value.length <= 0) {
                                return 'Error: No item!';
                            }
                        }
                        if (key === "done") {
                            if (value.length <= 0) {
                                return 'Error: No completed flag!';
                            }
                        }
                    }
                }
            }
        });

        return Model;
    },

    extendCollection : function(Collection) {
        _.extend(Collection.prototype, {
            comparator: function(places) {
                return places.get('done');
            }
        });

        return Collection;
    }
};

如何从ACS传递数据?

最佳答案

您需要在配置中使用“acs”。

检查一下:

exports.definition = {
config: {
    "columns": {
        "id":"integer",
        "address":"text",
        "user_completed":"integer"
    },
    "adapter": {
        "type": "acs",  // Use "acs"
        "collection_name": "places"
    }
},
extendModel : function(Model) {
    _.extend(Model.prototype, {
        validate : function(attrs) {
            for (var key in attrs) {
                var value = attrs[key];
                if (value) {
                    if (key === "item") {
                        if (value.length <= 0) {
                            return 'Error: No item!';
                        }
                    }
                    if (key === "done") {
                        if (value.length <= 0) {
                            return 'Error: No completed flag!';
                        }
                    }
                }
            }
        }
    });

    return Model;
},

extendCollection : function(Collection) {
    _.extend(Collection.prototype, {
        comparator: function(places) {
            return places.get('done');
        }
    });

    return Collection;
}
};

检查此演示文稿:ACS主题下的Titanium presentation,标题为“合金中的 ACS”。

另外,这是示例示例:Alloy backbone & ACS

希望这可以帮助。

10-07 23:13