- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么 Closure Compiler 不重命名我的 path
、start
等属性,但在使用高级编译时却重命名我的 limit
属性?
我希望它重命名代码中的每个属性和方法,除了导出的构造函数window.RFM
。
这是构造函数片段:
var RFM = function(node) {
...
this.path = '/';
this.limit = 10;
...
};
编译为:
...
this.path = '/';
this.c = 10;
...
我尝试添加诸如@private
和@constructor
之类的注释,但没有效果。
我一直在 http://closure-compiler.appspot.com/ 上进行测试
完整代码如下:
(function() {
var ajax = {};
ajax.x = function() {
try {
return new ActiveXObject('Msxml2.XMLHTTP')
} catch (e1) {
try {
return new ActiveXObject('Microsoft.XMLHTTP')
} catch (e2) {
return new XMLHttpRequest()
}
}
};
ajax.send = function(url, callback, method, data, sync) {
var x = ajax.x();
x.open(method, url, sync);
x.onreadystatechange = function() {
if (x.readyState == 4) {
callback(x.responseText)
}
};
if (method == 'POST') {
x.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
}
x.send(data)
};
ajax.get = function(url, data, callback, sync) {
var query = [];
for (var key in data) {
query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key]));
}
ajax.send(url + '?' + query.join('&'), callback, 'GET', null, sync)
};
ajax.post = function(url, data, callback, sync) {
ajax.send(url, callback, 'POST', data, sync)
};
var RFM = function(node) {
this.node = node;
node.innerHTML = this.template(RFM.templates.dialog);
this.nodeFiles = node.getElementsByClassName('rfm-files')[0];
this.nodeDirectories = node.getElementsByClassName('rfm-directories')[0];
this.nodeTags = node.getElementsByClassName('rfm-tags')[0];
this.nodeDirectories.addEventListener('click', this.clickedDirectory.bind(this));
this.path = '/';
this.start = 0;
this.limit = 10;
this.sort = 'mtime';
this.direction = 'desc';
this.src = 'example.php';
this.refresh();
};
RFM.prototype.template = function(string, variables) {
return string.replace(/\{(.*?)\}/g, function(match, variable) {
return variables[variable];
}).replace(/_(.*?)_/g, function(match, variable) {
return locale[variable];
});
};
// Refresh
RFM.prototype.refresh = function() {
ajax.get(this.src, {
path: this.path,
start: this.start,
limit: this.limit,
sort: this.sort,
direction: this.direction
}, function(data) {
data = JSON.parse(data);
this.refreshFiles(data.files);
this.refreshDirectories(data.directories);
}.bind(this), false);
};
RFM.prototype.refreshFiles = function(files) {
var result = '';
for (var i = 0; i < files.length; i++) {
files[i].type = files[i].name.replace(/^.*\./, '');
files[i].mtime = new Date(files[i].mtime * 1000).toISOString().replace('T', ' ').replace(/.{5}$/, '');
result += this.template(RFM.templates.file, files[i]);
}
this.nodeFiles.innerHTML = result;
};
RFM.prototype.refreshDirectories = function(directories) {
var result = '';
if (this.path != '/') {
result += this.template(RFM.templates.directory, {
name: '..'
});
}
for (var i = 0; i < directories.length; i++) {
result += this.template(RFM.templates.directory, {
name: directories[i]
});
}
this.nodeDirectories.innerHTML = result;
};
// Events
RFM.prototype.clickedDirectory = function(e) {
if (e.target.innerText === '..') {
this.path = this.path.replace(/\/[^\/]+\/$/, '/');
} else {
this.path += e.target.innerText + '/';
}
this.refresh();
};
var locale = {
headingDirectories: 'Directories',
headingTags: 'Tags',
headingUpload: 'Upload',
headingFiles: 'Files',
fileName: 'Name',
fileSize: 'Size',
fileType: 'Type',
fileModificationTime: 'Modified'
};
RFM.templates = {
"dialog": "<div class=\"rfm-dialog\"> <div class=\"rfm-wrapper\"> <div class=\"rfm-sidebar\"> <div class=\"rfm-directories-wrapper\"> <span class=\"rfm-heading\">_headingDirectories_<\/span> <div class=\"rfm-directories\"><\/div> <\/div> <div class=\"rfm-tag-wrapper\"> <span class=\"rfm-heading\">_headingTags_<\/span> <div class=\"rfm-tags\"><\/div> <\/div> <\/div> <div class=\"rfm-main\"> <div class=\"rfm-upload\"> <span class=\"rfm-heading\">_headingUpload_<\/span> <\/div> <div class=\"rfm-files-wrapper\"> <span class=\"rfm-heading\">_headingFiles_<\/span> <table class=\"rfm-table\"> <thead> <tr> <th><\/th> <th class=\"rfm-file-name\">_fileName_<\/th> <th class=\"rfm-file-type\">_fileType_<\/th> <th class=\"rfm-file-size\">_fileSize_<\/th> <th class=\"rfm-file-mtime\">_fileModificationTime_<\/th> <\/tr> <\/thead> <tbody class=\"rfm-files\"> <\/tbody> <\/table> <\/div> <\/div> <\/div> <div>",
"directory": "<div class=\"rfm-directory\">{name}<\/div>",
"file": "<tr class=\"rfm-file\"> <td><\/td> <td class=\"rfm-file-name\">{name}<\/td> <td class=\"rfm-file-type\">{type}<\/td> <td class=\"rfm-file-size\">{size}<\/td> <td class=\"rfm-file-mtime\">{mtime}<\/td> <\/tr>"
};
window['RFM'] = RFM;
})();
编译后的:
(function() {
function b(a) {
a.innerHTML = this.a(b.b.k);
this.h = a.getElementsByClassName("rfm-files")[0];
this.d = a.getElementsByClassName("rfm-directories")[0];
this.d.addEventListener("click", this.e.bind(this));
this.path = "/";
this.start = 0;
this.c = 10;
this.sort = "mtime";
this.direction = "desc";
this.src = "example.php";
this.refresh()
}
...
window.RFM = b
})();
最佳答案
除非使用aliasExternals,否则在(默认)externs 中定义的属性名称不会被重命名。
所以 sort、getElementById、parseInt 和许多其他的都不会被重命名。我猜编译器应该将您的属性视为 RFM 的属性,但似乎并非如此。如果将路径重命名为 myPath,则应在编译时重命名或使用 aliasExternals。
关于javascript - 闭包编译器不重命名属性和方法(高级编译),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17993441/
以下闭包函数在 javascript 中运行良好。 function generateNextNumber(startNumber) { var current = startNumber;
Swift的闭包(Closures)是一种将功能块和上下文整合并演示在代码中的一种手段。闭包可以捕获并存储其上下文中的变量和常量。与普遍存在于其他语言的匿名函数(如Python的lambda、Java
在本教程中,您将借助示例了解 JavaScript 闭包。 在了解闭包之前,您需要了解两个概念: 嵌套函数 返回函数 JavaScript 嵌套函数 在 JavaScript 中,一个函数也可
在本教程中,您将借助示例了解 JavaScript 闭包。 在了解闭包之前,您需要了解两个概念: 嵌套函数 返回函数 JavaScript 嵌套函数 在 JavaScript 中,一个函数也可
闭包介绍 闭包(closure)是Javascript语言的一个难点,也是它的特色,很多高级应用都要依靠闭包实现。 要理解闭包,首先必须理解Javascript特殊的变量作用域。 1.全局变量和局部变
这个问题已经有答案了: Methods in ES6 objects: using arrow functions (6 个回答) 已关闭 6 年前。 我已经在 stackoverflow 上到处查找
这个问题已经有答案了: How do JavaScript closures work? (86 个回答) 已关闭 9 年前。 我有一个关于 Javascript 闭包的简单问题: 给出了以下函数:
所以我有以下内容: Object a = data.getA(); Object b = data.getB(); Object c = data.getC(); // and so on 这些对象是
现在已经很晚了,我大脑中道格拉斯·克罗克福德居住的部分已经关闭。我尝试了一些方法,但没有达到预期效果。 我有一个 Canvas ,我在其中画了两条线,然后在计时器上淡出它们,但只有循环中的最后一行淡出
因此,我创建了一个变量 car,然后将其分配给一个函数并添加了参数模型、年份。然后在函数内引用参数创建一个对象。 然后创建“闭包”内部函数 yourCar() 并返回其中的外部函数对象“Propert
我正在 Mozilla 开发者网站上阅读关于关闭的解释,并且有点挣扎。请查看 Mozilla 网站上的以下代码。我有点理解它是如何工作的,但我认为我的评论下面的代码也应该工作。为什么一点击18、20就
这个问题在这里已经有了答案: UnboundLocalError trying to use a variable (supposed to be global) that is (re)assig
以下程序返回“本地”,根据我正在阅读的教程,它旨在演示闭包现象` 我不明白的是,为什么最后为了调用parentfunction,将其分配给变量“child”,然后调用“child”。 为什么只写 pa
我读到闭包末尾的()会立即执行。那么,这两者之间有什么区别。我在一些代码中看到了第一个用法。 谢谢。 for (var a=selectsomeobj(),i=0,len=a.length;i
代码如下 var collection = (function (){ var x = 0; return {
我仍然对 JavaScript 中的闭包概念感到困惑。我明白闭包是内部函数在母函数返回后访问在其母函数中创建的变量的能力。但是我仍然很困惑,如果我们可以在函数内部创建一个变量,为什么我们必须创建内部函
我搜索了很多主题并没有找到答案,或者问题太复杂了。所以没关系。这是我的第一个问题。 这是 SQL SELECT parent.*, ( SELECT COUNT(*) FROM
有 JS 高手可以解释为什么会这样吗: $$={} (function(x){ x.newModule = { func: function(){...} };
在此示例中,我尝试按值传递,但传递的是引用。 for (int i = 0; i new PhoneJobTest(i); t.Start(); } 这可以像这样补救: for (int
从 $.each() 中访问 this.rules 变量的最佳方式是什么?任何关于原因/方式的解释也会有帮助! app.Style = function(node) { this.style
我是一名优秀的程序员,十分优秀!