开发者

jquery $.ajax jsonp

开发者 https://www.devze.com 2023-03-30 18:38 出处:网络
$.ajax({ type : \"GET\", dataType : \"jsonp\", url : \'/\', 开发者_StackOverflow社区 data : {} success: function(obj){
$.ajax({
    type : "GET",
    dataType : "jsonp",
    url : '/',
   开发者_StackOverflow社区 data : {}
    success: function(obj){

    }
});

How can i use $.ajax dataType: jsonp cross-domain to post data?


To answer your question instead of sending you to another link like above:

The JS:

$.ajax({
     type : "GET",
     dataType : "jsonp",
     url : "http://domainname.com/json.php?callback=?", // ?callback=?
     success: function(data){
           // do stuff with data
     }
});

The PHP could possibly look like this:

<?php
include('connect.php');
$sql = "SELECT id, name, items FROM tablename ORDER BY id ASC"; 
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
    $rows[] = array(
            "id" => $row['id'], 
            "name" => $row['name'], 
            "items" => $row['items']);
}
$json = json_encode($rows);
$callback = $_GET['callback'];
echo $callback.'('. $json . ')';
?>

Setting the dataType to jsonp will allow jQuery to automatically add an extra ?callback=? to the end of your url to specify the callback. If you specify your own like above it will use the callback name you are passing. If you need to specify a json callback name use the jsonpCallback property. Or you can add as a param to the data property. If you need more info, please visit the jQuery API Ajax: http://api.jquery.com/jQuery.ajax/.

Don't forget to add the ; on the result string.

I hope this helps!


It's not possible with simple jsonp. Read this

0

精彩评论

暂无评论...
验证码 换一张
取 消