Detect JSON Ajax requests by the response content-type (like is done with XML). Fixes #5709.
This commit is contained in:
parent
230614b4df
commit
787f271052
3 changed files with 26 additions and 2 deletions
|
@ -1,9 +1,13 @@
|
|||
<?php
|
||||
error_reporting(0);
|
||||
if ( $_REQUEST['header'] ) {
|
||||
header("Content-type: application/json");
|
||||
}
|
||||
|
||||
$json = $_REQUEST['json'];
|
||||
if($json) {
|
||||
echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]';
|
||||
} else {
|
||||
echo '{ "data": {"lang": "en", "length": 25} }';
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
|
|
@ -797,6 +797,25 @@ test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
|
|||
});
|
||||
});
|
||||
|
||||
test("jQuery.ajax() - json by content-type", function() {
|
||||
expect(5);
|
||||
|
||||
stop();
|
||||
|
||||
jQuery.ajax({
|
||||
url: "data/json.php",
|
||||
data: { header: "json", json: "array" },
|
||||
success: function( json ) {
|
||||
ok( json.length >= 2, "Check length");
|
||||
equals( json[0].name, 'John', 'Check JSON: first, name' );
|
||||
equals( json[0].age, 21, 'Check JSON: first, age' );
|
||||
equals( json[1].name, 'Peter', 'Check JSON: second, name' );
|
||||
equals( json[1].age, 25, 'Check JSON: second, age' );
|
||||
start();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
|
||||
expect(5);
|
||||
stop();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue