如何使用laravel使用函数回调?

时间:2017-09-08 03:42:35

标签: javascript jquery json widget

我创建了一个简单的小部件,它响应使用html响应的服务器和回调函数。这是我的代码片段

<div id="example-widget-container"></div>
<script type="text/javascript" src="js/library.js"></script>

以及来自此

的回应
? ( {'html': '<strong>Hello World!</strong>' } )

来自pyton的这段代码并生成html,这就是回复

hello from the other site: Hello World!

Hello World来自使用回调函数的服务器。

这里是我的widget.js

(function() {

    // Localize jQuery variable
    var jQuery;

    /******** Load jQuery if not present *********/
    if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.4.2') {
        var script_tag = document.createElement('script');
        script_tag.setAttribute("type","text/javascript");
        script_tag.setAttribute("src",
            "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
        if (script_tag.readyState) {
          script_tag.onreadystatechange = function () { // For old versions of IE
              if (this.readyState == 'complete' || this.readyState == 'loaded') {
                  scriptLoadHandler();
              }
          };
        } else {
          script_tag.onload = scriptLoadHandler;
        }
        // Try to find the head, otherwise default to the documentElement
        (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
    } else {
        // The jQuery version on the window is the one we want to use
        jQuery = window.jQuery;
        main();
    }

    /******** Called once jQuery has loaded ******/
    function scriptLoadHandler() {
        // Restore $ and window.jQuery to their previous values and store the
        // new jQuery in our local jQuery variable
        jQuery = window.jQuery.noConflict(true);
        // Call our main function
        main(); 
    }

    /******** Our main function ********/
    function main() { 
        jQuery(document).ready(function($) { 

            /******* Load CSS *******/
            var css_link = $("<link>", { 
                rel: "stylesheet", 
                type: "text/css", 
                href: "css/style.css" 
            });
            css_link.appendTo('head');          

            /******* Load HTML *******/
            var jsonp_url = "http://jsonp.local/request-json-array?=callback=?";
            // http://al.smeuh.org/cgi-bin/webwidget_tutorial.py?callback=?

            $.getJSON(jsonp_url, function(data) {
              $('#example-widget-container').html("hello from the other site: " + data);
            });
        });
    }

    })(); // We call our anonymous function immediately

我的问题是如何使用 laravel 从json到jsonp创建回调函数。一直试图搜索谷歌,到目前为止,我没有找到足够好的项目。

感谢http://alexmarandon.com/articles/web_widget_jquery/提供精彩的文章。大多数代码来自那里。

更新: 我已经给出了答案,随时用新答案进行更新

1 个答案:

答案 0 :(得分:0)

通过实现Cross Resource Origin Sharing或称为CORS,我可以使用回调函数。

这里指导实现启用laravel共享其数据的依赖关系:

https://github.com/barryvdh/laravel-cors