0
我正試圖在Android上的phonegap上開發應用程序。如何使用PhoneGap調用webservice
我想要做的是從我的應用程序調用webservice,這將用於數據訪問。
我發現許多張網上如何做到這一點,最簡單的一個,我可以發現,似乎直截了當是這樣
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
type: "POST",
url: "http://www.webservicex.net/stockquote.asmx/GetQuote",
data: "{'usd'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Insert the returned HTML into the <div>.
$('#Content').html(msg.d);
}
});
});
然而,我所看到的是文字我已經放入div中,div內容不會改變。我直接在Galaxy SIII設備上進行測試,而不是在模擬器上進行測試。
作爲我的新手,我不知道該放置這個功能的位置,請問您能指引我在正確的方向嗎?我看到一個成功:標籤,它是在它之後來的嗎? – KamalSalem
我已經添加了兩個例子 – davehale23