Android アプリケーションを開発していて、データをリモート データベースに保存したいと考えています。index.html、jquery 1.9.1、test.php があります。
index.html で送信した情報を、Android アプリケーションを実行している ajax を介して test.php に保存したいと考えています。
どうすればこれができるか分かりますか?
PS: 私は自分の Web アプリケーションを wamp でテストしましたが、同じドメインにいない場合は動作しないことがわかっています。
このようなことを試みています:
インデックス.html:
<form action="javascript:func();" >
<div id="divSend" >
<input type="button" value="Send" id="send" />
</div>
<div id="divMensagem">
<textarea placeholder="type anything..." rows="6" name="sms" id="sms"></textarea>
</div>
</form>
私のfile.js:
$(document).ready(function (){
$('#send').bind('click', function (e){
e.preventDefault();
var sms = $('#sms').val();
var p = $.post( 'http://www.domain.com/test/test.php', { sms: sms } );
p.done(function (data){
alert(data);
});
});
});
私のindex.php:
<php
$sms = $_POST['sms'];
echo $sms;
?>