当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript loader-utils.stringifyRequest函数代码示例

本文整理汇总了TypeScript中loader-utils.stringifyRequest函数的典型用法代码示例。如果您正苦于以下问题:TypeScript stringifyRequest函数的具体用法?TypeScript stringifyRequest怎么用?TypeScript stringifyRequest使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了stringifyRequest函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

module.exports.pitch = function(remainingRequest: string, precedingRequest: string): string {
  const options = loaderUtils.getOptions(this) || {};
  const moduleRequest = `!!${remainingRequest}`;
  const normalizedRequest = loaderUtils.stringifyRequest(this, moduleRequest);
  const moduleName = path.basename(normalizedRequest).replace(/\..*$/, '');
  const request = loaderUtils.stringifyRequest(this, moduleRequest);

  return [
    "import Loadable from 'react-loadable';",
    `export var ${moduleName} = Loadable({`,
    `  loader: function() { return import(${getMagicComments(options)} ${request}).then(function(m) { return m.${moduleName}; }); },`,
    `  loading: function() { return null; }`,
    `});`
  ].join('\n');
};
开发者ID:OfficeDev,项目名称:office-ui-fabric-react,代码行数:15,代码来源:fabricAsyncLoader.ts

示例2: pitch

 public static pitch(remainingRequest: string): string {
   return [
     `var content = require(${loaderUtils.stringifyRequest(this, '!!' + remainingRequest)});`,
     'var loader = require("load-themed-styles");',
     '',
     'if(typeof content === "string") content = [[module.id, content]];',
     '',
     '// add the styles to the DOM',
     'for (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1]);',
     '',
     'if(content.locals) module.exports = content.locals;'
   ].join('\n');
 }
开发者ID:lijunle,项目名称:load-themed-styles-loader,代码行数:13,代码来源:LoadThemedStylesLoader.ts


注:本文中的loader-utils.stringifyRequest函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。