测试jsonp
Posted brady-wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测试jsonp相关的知识,希望对你有一定的参考价值。
login
<?php
$type = $_GET[‘type‘];
if(empty($type)) {
$url = "";
}else {
if($type == ‘logout‘) {
$url = "";
} else{
$url = ";
}
}
?>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$.ajax({
type: "get",
url: "<?php echo $url;?>",
xhrFields: {
withCredentials: true
},
crossDomain: true,
dataType: "jsonp",
jsonp:"jsoncallback",
success: function (res) {
alert(res.msg)
}
});
})
</script>
以上是关于测试jsonp的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Angular 中测试 JSONP HTTP 请求?
公共接口url请求地址,axios 或 vuesource 测试 请求 get post jsonp