gpt4 book ai didi

sails.js - 缩小所有的sails.js 提供的html

转载 作者:行者123 更新时间:2023-12-03 16:54:19 26 4
gpt4 key购买 nike

我需要我的 sails.js应用程序向用户提供缩小的 html。所以用户很难阅读。以前有人这样做过吗?

谢谢你。

最佳答案

这对我有用:
https://github.com/balderdashy/sails/issues/2188#issuecomment-56994236

配置/views.js :

var minify = require('html-minifier').minify;
var ejs = require('ejs-locals');
var parsing = function(path,options,fn) {
options.locals = options.locals || {};
options.locals._layoutFile = 'layout.ejs';
ejs(path, options, function(err, str){
str = minify(str,{collapseWhitespace: true, removeComments: true});
return fn(err, str);
});

};

module.exports.views = {
engine: {
ext: 'ejs',
fn: parsing
},
layout: false
};

关于sails.js - 缩小所有的sails.js 提供的html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26051280/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com