在Angular-cli中使用Pug(Jade)模板

之前介绍过如何在Angular项目中使用Pug模板,但是方法不是很“优雅”,暴露了不必要的loader模块,且Pug模板编写方法与HTML不尽相同,部分属性需要引号包起来。

Angular实际是使用webpack进行打包的,那就可以直接修改webpack.config.js文件,添加pug文件的loader。

直接写步骤吧。

1 npm install pug-ng-html-loader --save-dev
2 在项目的根目录下新建文件pug-rule-insert.js,内容为

const fs = require('fs');
const commonCliConfig = 'node_modules/@angular/cli/models/webpack-configs/common.js';
const pug_rule = `\n{ test: /.(pug|jade)$/, loader: "pug-ng-html-loader" },`;

fs.readFile(commonCliConfig, (err, data) => {
  if (err) { throw err; }

  const configText = data.toString(); 
  // make sure we don't add the rule if it already exists
  if (configText.indexOf(pug_rule) > -1) { return; }

  // We made it this far, let's insert that pug webpack rule
  const position = configText.indexOf('rules: [') + 8;
  const output = [configText.slice(0, position), pug_rule, configText.slice(position)].join('');
  const file = fs.openSync(commonCliConfig, 'r+');
  fs.writeFile(file, output); // ta-da
  fs.close(file);
});

这实际是修改了webpack打包文件。

3 执行node pug-rule-insert.js
4 修改templateUrl属性,比如改为’./my-component.template.pug’。
5 修改package.json文件,新增postintall钩子,这样每次install完成之后都会自动修改webpack配置文件

scripts:{
    ...
    "postinstall": "node pug-rule-insert.js"
}

6 执行ng serve查看效果

参考文章:https://medium.com/@MarkPieszak/using-pug-or-jade-templates-with-the-angular-cli-9e37334db5bc

本文使用的是该文章评论中提到的pug-ng-html-loader, 解决了pug编译html导致angular不兼容的问题

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值