如何在Titanium中上传文件

时间:2017-03-25 02:02:08

标签: rest api upload titanium appcelerator

我在Titanium中有应用程序并且我正在使用enter image description here来处理我对其余api的请求,现在我需要将文件上传到服务器。我该如何管理?

可以使用RESTAPI适配器完成吗?

1 个答案:

答案 0 :(得分:1)

如果您可以/想要使用其他REST库,我可以查看https://github.com/jasonkneen/RESTe

,我从未使用过该库

我将此用于所有API调用,您可以使用它来发布任何数据。

api.postData({
    body: {
        text: "Test data",
        file: Ti.Filesystem.getFile().read()
    }
}, function(data) {
    // response data
});

它还有一些模型/收藏助手: https://github.com/jasonkneen/RESTe#alloy-collections-and-model-support