作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个文件,它的大小变小了,但清楚地说明了我的问题:
'use strict';
let _ = require('lodash');
let secret;
let Ejs = function () {
'use strict';
this.engine = require('ejs');
this.fs = require('fs');
};
Ejs.prototype.generate = function (config) {
'use strict';
let template;
template = this.engine.compile(this.fs.readFileSync(config.src, 'utf8'));
...
};
module.exports = new Ejs();
我需要在表达式和原型(prototype)中使用“use strict”,还是在文件之上就足够了?或者我需要全部三个?
最佳答案
关于javascript - 严不严,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51540719/
我是一名优秀的程序员,十分优秀!