1
我有一個任務實現基於聊天的應用程序訪問服務器上使用Web服務API調用可用的私人數據。顯示所有可用用戶從Web服務器,並與這些人聊天。鈦開發的可能性不大支持iPhone/Android聊天應用程序。如果可能的話,讓我指導實施。鈦聊天實現
我有一個任務實現基於聊天的應用程序訪問服務器上使用Web服務API調用可用的私人數據。顯示所有可用用戶從Web服務器,並與這些人聊天。鈦開發的可能性不大支持iPhone/Android聊天應用程序。如果可能的話,讓我指導實施。鈦聊天實現
是的,當然這是可能的。有一百萬種方法可以做到這一點,你的問題不是很清楚。
如果它完全基於web服務的then just use this.
繼承人發佈到Web服務發送一個JSON對象的一個簡單的例子:
var getChatMessages = Ti.Network.createHTTPClient({
onload : function(e) {
var doSomethignWithThis = this.responseText;
},
onerror : function(e) {
Ti.API.info(this.responseText);
Ti.API.info('SelectActivityStepsByKeyList webservice failed with message : ' + e.error);
}
});
getChatMessages.open('POST', 'http://yourchatserver/GetChats');
getChatMessages.setRequestHeader("Content-Type", "application/json");
getChatMessages.send({"message" : "How is everyone today?", "user" : "[email protected]});
這並不難鈦,難的是在服務器端。 Here is an example project that accomplishes chat through the use of the socket.io library.這對你來說可能是更好的方法。該鏈接有一個如何工作的視頻以及完整的源代碼。
如何執行示例代碼來測試..你可以給我一些細節 –
看看我給的鏈接:完整的代碼在這裏https://github.com/euforic/ChatSocks#readme –