2012-07-26 53 views
0

我正在使用Titanium創建移動應用程序。我正在使用sqlite的鈦數據庫。這個pdf需要有框來構造我正在使用該應用的數據和圖像。使用Titanium DB上的數據生成PDF文檔

我假設我需要做的是將數據轉換成JSON鈦,將其上傳到Web服務器並插入到一個MySQL/phpmysql分貝,然後使用某種腳本,那裏將讀取網頁數據庫並創建一個pdf並將其發送回手機

是嗎?

如果是這樣的話......我需要整個過程的幫助哈哈...任何好的教程上的數據庫上傳到Web數據庫過程?

回答

0

Check the docs,HTTPClient是你需要使用的,它是一個標準。

第一步是在您的服務器上創建一個分析您的JSON格式的Web服務。您必須完成的大部分工作與Titanium無關,但是這裏是通過Titanium App發送POST請求將JSON對象發送到某個Web服務的代碼。

var xhr_getstep = Titanium.Network.createHTTPClient(); 
xhr_getstep.onload = function(e) { 
    // Do something with the response from the server 
    var responseBlob = this.responseText; 
}; 
xhr_getstep.onerror = function() { 
    Ti.API.info('[ERROR] WebService failed.'); 
}; 
xhr_getstep.open("POST", 'http://yourwebsite.com/yourwebserviceentry.php'); 
xhr_getstep.setRequestHeader("Content-Type", "application/json"); 

// Create your object with info on how to create the PDF 
var objSend = {title : 'Amazing Title'}; 
xhr_getstep.send(obj); // Send it all off