如何使用JQuery Post传递头参数

时间:2015-03-11 05:27:02

标签: api http-headers jquery-post

如何使用JQuery Post传递头参数? 我有这个jquery帖子。

    $(document).on('submit',"#store_form", function(e) {
            e.preventDefault(); 

            $("#store_loader").fadeIn();

            term = $( this ).serialize(),
            url =  $( this ).attr( "action" );


            $.post( 'http://example.com/v1/user/create', term, function( data ) {
                  $( "#return_store" ).html( data );
            });



            $("#store_loader").fadeOut();
        });

我有这个错误:

XMLHttpRequest无法加载http://example.com/v1/user/create。请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,不允许原点“http://localhost:8888”访问。

1 个答案:

答案 0 :(得分:0)

如果你使用PHP,你可以修复它在你的PHP脚本上添加这样的东西:

 header("Access-Control-Allow-Origin: *");