书栈网 · BookStack 本次搜索耗时 0.035 秒,为您找到 7154 个相关结果.
  • 2S库

    1410 2018-07-17 《前端工程师手册》
    JavaScript库 基本库 模块加载管理 UI库 图片加载 模板引擎 jQuery插件 MVC/MMVC async promise 语言识别 iframe相关 图表 SVG 动画相关 视差滚动 功能性能 物理引擎 测试相关 参考资料 JavaScript库 基本库 jQuery zepto Van...
  • 调试

    调试 vConsole vConsole 使用说明 调试 vConsole 在真机上,如果想要查看 console API 输出的日志内容和额外的调试信息,需要在点击屏幕右上角的按钮打开的菜单里选择「打开调试」。此时小程序/小游戏会退出,重新打开后会右下角会出现一个 vConsole 按钮。点击 vConsole 按钮可以打开日志面板...
  • set

    Document.set(options: Object): Promise<Object> 参数 options: Object 返回值 Promise.<Object> 示例代码 小程序端兼容支持回调风格 Document.set(options: Object): Promise<Object> 支持端:小程序 , 云函数 ...
  • Coroutines in LLVM

    861 2020-03-21 《LLVM 10 Reference》
    Coroutines in LLVM Introduction Switched-Resume Lowering Returned-Continuation Lowering Coroutines by Example Coroutine Representation Coroutine Transformation Avoiding Heap A...
  • Handlers and Middleware

    Handlers and Middleware Handlers Middleware HandlerStack Creating a Handler Handlers and Middleware Guzzle clients use a handler and middleware system to send HTTP requests...
  • Globals

    方法 参考 afterAll(fn, timeout) afterEach(fn, timeout) beforeAll(fn, timeout) beforeEach(fn, timeout) describe(name, fn) describe.only(name, fn) describe.skip(name, fn) test(na...
  • async 和 await

    1060 2020-01-09 《前端面试之道》
    async 和 await async 和 await 一个函数如果加上 async ,那么该函数就会返回一个 Promise async function test () { return "1" ; } console . log ( test ()); // -> Promise {<resolved>:...
  • SuggestionsPlugin

    SuggestionsPlugin() function SuggestionsPlugin() function SuggestionsPlugin() function SuggestionsPlugin() function Signature export declare function SuggestionsPlugin (...
  • getImageInfo

    Taro.getImageInfo(OBJECT) 参数 返回值 Promise <object res> 示例代码 API支持度 Taro.getImageInfo(OBJECT) 获取图片信息。网络图片需先配置download域名才能生效。 使用方式同 wx.getImageInfo ,支持 Promise 化使用。 参数 ...
  • 5种 yieldable

    5种 yieldable 5种 yieldable yieldable本来是没有这个词的,因为在Generator里可以是yield关键词,而yield后面接的有5种可能,故而把这些可以yield接的方式成为yieldable,即可以yield接的。 Promises Thunks (functions) array (parallel exec...