打印 $.post 响应
Print $.post response
我有一个带有一些选项标签的简单网页:
<!DOCTYPE HTML>
<html>
<head>
<title>Test</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<form>
<label>Seleziona l'ente</label>
<select name="data" id="data">
<option value="PRO - 011142764">COMUNE DI AGLIE'</option>
<option value="PRO - 011120674">COMUNE DI AGRATE CONTURBIA</option>
</select>
<input type="text" name="textfield" id="textfield" />
</form>
<script>
$('#data').change(function() {
$.post("richiesta.php", { value: this.value });
$('#textfield').val(this.value);
});
</script>
</body>
</html>
这里是 richiesta.php
(从 $.post
函数调用):
<?php
function soldipubblici() {
list($comparto, $ente) = explode("-", $_POST['value'], 2);
$curl_parameters = array(
'codicecomparto' => trim($comparto),
'codiceente' => trim($ente),
);
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,"http://soldipubblici.gov.it/it/ricerca");
curl_setopt($ch,CURLOPT_POST,true);
curl_setopt($ch,CURLOPT_POSTFIELDS,http_build_query( $curl_parameters ));
curl_setopt($ch,CURLOPT_HTTPHEADER,array (
"Content-Type: application/x-www-form-urlencoded; charset=UTF-8",
"Accept: application/json",
"X-Requested-With: XMLHttpRequest",
));
$output=curl_exec($ch);
curl_close($ch);
}
echo soldipubblici();
?>
一切正常。在 Firebug 中,我可以看到使用从 POST 收集的数据从 richiesta.php 发出的请求已正确返回。
我只是不知道如何在屏幕上(或在输入标签中)打印我在 Firebug 中看到的响应。
我试过类似的东西:
$('#data').change(function() {
$.ajax({
url: 'richiesta.php',
type: 'POST',
dataType: 'json',
data: {value: this.value},
}).done(function ( data ) {
$('#textfield').val(data);
});
});
请求仍然有效,但在 #textfield
中我得到 [object Object]
,而不是 JSON。
因为你已经指定返回的数据是json(使用dataType: 'json'
),jQuery已经解析了它所以它不再是一个字符串,它是一个对象。
如果您想在 #textfield
中将其视为 json 字符串,则必须再次将其转换为字符串:
$('#textfield').val(JSON.stringify(data));
只需使用JSON.stringify.For More Details
$('#data').change(function() {
$.ajax({
url: 'richiesta.php',
type: 'POST',
dataType: 'json',
data: {value: this.value},
}).done(function ( data ) {
var simpleData = JSON.stringify(data);
$('#textfield').val(simpleData );
});
});
我有一个带有一些选项标签的简单网页:
<!DOCTYPE HTML>
<html>
<head>
<title>Test</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<form>
<label>Seleziona l'ente</label>
<select name="data" id="data">
<option value="PRO - 011142764">COMUNE DI AGLIE'</option>
<option value="PRO - 011120674">COMUNE DI AGRATE CONTURBIA</option>
</select>
<input type="text" name="textfield" id="textfield" />
</form>
<script>
$('#data').change(function() {
$.post("richiesta.php", { value: this.value });
$('#textfield').val(this.value);
});
</script>
</body>
</html>
这里是 richiesta.php
(从 $.post
函数调用):
<?php
function soldipubblici() {
list($comparto, $ente) = explode("-", $_POST['value'], 2);
$curl_parameters = array(
'codicecomparto' => trim($comparto),
'codiceente' => trim($ente),
);
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,"http://soldipubblici.gov.it/it/ricerca");
curl_setopt($ch,CURLOPT_POST,true);
curl_setopt($ch,CURLOPT_POSTFIELDS,http_build_query( $curl_parameters ));
curl_setopt($ch,CURLOPT_HTTPHEADER,array (
"Content-Type: application/x-www-form-urlencoded; charset=UTF-8",
"Accept: application/json",
"X-Requested-With: XMLHttpRequest",
));
$output=curl_exec($ch);
curl_close($ch);
}
echo soldipubblici();
?>
一切正常。在 Firebug 中,我可以看到使用从 POST 收集的数据从 richiesta.php 发出的请求已正确返回。
我只是不知道如何在屏幕上(或在输入标签中)打印我在 Firebug 中看到的响应。 我试过类似的东西:
$('#data').change(function() {
$.ajax({
url: 'richiesta.php',
type: 'POST',
dataType: 'json',
data: {value: this.value},
}).done(function ( data ) {
$('#textfield').val(data);
});
});
请求仍然有效,但在 #textfield
中我得到 [object Object]
,而不是 JSON。
因为你已经指定返回的数据是json(使用dataType: 'json'
),jQuery已经解析了它所以它不再是一个字符串,它是一个对象。
如果您想在 #textfield
中将其视为 json 字符串,则必须再次将其转换为字符串:
$('#textfield').val(JSON.stringify(data));
只需使用JSON.stringify.For More Details
$('#data').change(function() {
$.ajax({
url: 'richiesta.php',
type: 'POST',
dataType: 'json',
data: {value: this.value},
}).done(function ( data ) {
var simpleData = JSON.stringify(data);
$('#textfield').val(simpleData );
});
});