weixin_33708432 2015-10-25 03:06 采纳率: 0%
浏览 359

Ajax调用中localhost的网址

I have an ajax script on a remote server making to call to my local host which is running a django app:

           $(document).ready(function(){
            $.ajax({
                url: URLLOCALHOST
                dataType: 'jsonp',
                success: function(){}
                }
            });

what goes in place of my URLLOCALHOST?

  • 写回答

1条回答 默认 最新

  • weixin_33674976 2015-10-25 05:06
    关注

    I think I found the answer here: Access to a site on localhost from remote

    Apparently local host cannot be accessed from another network without security issues.

    评论

报告相同问题?