php用ajax套数据 ajax调用php接口

有谁知道php中用jquery实现ajax获取数据对象的方法?php用ajax套数据你是说用 php 获取 远程php用ajax套数据的网页?
你去看这个函数php用ajax套数据:file_get_contents
---------------------------------------------
你的事:后台要查询出一个用户(用户名php用ajax套数据,用户ID等一些信息)再把这些信息返回到前台显示 。
但是前台现在我只要一个用户名,这样的话 , 最好用 json 格式 。
比如 , 后台这样写 :
echo '{"name":'. json_encode('前端攻城师') .',"id":1000,"area":'. json_encode('中国') .'}';
然后前台代码:
script
$.post("index.php?a=diary_view2action=first" , function(data){
alert(data.name);
},'json');
/script
这样,就可以获取 名字啦 。。。
如果还有问题,设我为最佳,然后去 jQuery 爱好者论坛 去提问 。。。
有高手帮你回答 。。。
如何利用AJAX+PHP处理表单查询数据?给你个例子,照着改改就成:
html
head
script src="/images/defaultpic.gif"/script
/head
body
form
Select a User:
select name="users" onchange="showUser(this.value)"
option value="https://www.04ip.com/post/1"Peter Griffin/option
option value="https://www.04ip.com/post/2"Lois Griffin/option
option value="https://www.04ip.com/post/3"Glenn Quagmire/option
option value="https://www.04ip.com/post/4"Joseph Swanson/option
/select
/form
p
div id="txtHint"bUser info will be listed here./b/div
/p
/body
/html
"selectuser.js" 文件中的 JavaScript 代码:
var xmlHttp
function showUser(str)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
}
var url="getuser.php"
url=url+"?q="+str
url=url+"sid="+Math.random()
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}
function stateChanged()
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{
document.getElementById("txtHint").innerHTML=xmlHttp.responseText
}
}
function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
//Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
AJAX如何调用PHP接口 , 获取数据在前台页面展示?//js
$.ajax({
async: false,
url:url,//后台地址
type:'GET',
dataType:"json",
success: function(data){
//data,后台返回数据
},
error: function(){
alert("输出错误");
}
});
//后台函数
public function get_content(){
$lists = M('bbs_note')-select();//获取数据库数据
if(!empty($lists)){
$this-ajaxReturn($lists);//返回数据
}
}
php中怎么用ajax读取数据库数据你如果像ajax调取数据库的信息 那你需要在PHP中读取数据库让ajax去访问你得php然后获取到你的数据 。
如何在同一个PHP页面,通过ajax把值传给PHP变量?举个例子:你想在用户点击时,把 apple 这个字符串 , 通过前端传给后端 。
前端 , 用 jQuery 举例:
$('button').click(function () {
$.ajax({
url: '/xxx',
method: 'post',
dataType: 'json',
data: {fruit: 'apple'}
}).done(function (res) {
// 成功后的回调
}).fail(function (err) {

推荐阅读