{"id":229,"date":"2021-04-09T21:59:26","date_gmt":"2021-04-09T13:59:26","guid":{"rendered":"http:\/\/gjweb.top\/?p=229"},"modified":"2021-04-09T21:59:27","modified_gmt":"2021-04-09T13:59:27","slug":"%e6%89%8b%e5%86%99bind","status":"publish","type":"post","link":"https:\/\/gjweb.top\/?p=229","title":{"rendered":"\u624b\u5199bind"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u517c\u5bb9\u7248\u672c<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>var slice = Array.prototype.slice;\nfunction bind(asThis){\n    var args = slice.call(arguments,1);\n    var fn = this;\n    return function(){\n        var agrs2 = slice.call(arguments,0);\n        return fn.apply(asThis,args.concat(agrs2))\n    }\n}\nmodule.exports =  bind;\n\nif(! Function.prototype.bind){\n    Function.prototype.bind = bind;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">ES6\u7248\u672c<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>function bind(asThis,...args){\n    const fn = this;\n    return function(...args2){\n        return fn.call(asThis,...args,...args2)\n    }\n}\nmodule.exporte = bind;\nif(!Function.prototype.bind){\n       Function.prototype.bind = bind\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u517c\u5bb9\u7248\u672c ES6\u7248\u672c<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[30],"tags":[],"class_list":["post-229","post","type-post","status-publish","format-standard","hentry","category-js"],"_links":{"self":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts\/229","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=229"}],"version-history":[{"count":0,"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts\/229\/revisions"}],"wp:attachment":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=229"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=229"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=229"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}