我正在用javascript编写一个应用程序,无法弄清楚如何访问我的函数中声明的变量,在这个jquery解析中。在里面我可以访问全局变量,但我真的不想为这些值创建全局变量。
基本上我想从simulationFiles
变量中的xml文档中提取文件名。我检查节点属性是否与simName
相等,并提取xml元素中的两个字符串,我觉得它正在工作。
如何提取这些xml元素并将它们附加到局部变量?
function CsvReader(simName) {
this.initFileName = "somepath";
this.eventsFileName = "somepath";
$(simulationFiles).find('simulation').each(function() {
if ($(this).attr("name") == simName) {
initFileName += $(this).find("init").text();
eventsFileName += $(this).find("events").text();
}
});
}
答案 0 :(得分:14)
this
函数中的CsvReader
与this
回调中的each()
不同(相反,它是迭代中的当前元素)。要在回调中访问外部函数的作用域,我们需要能够通过另一个名称引用它,您可以在外部作用域中定义它:
function CsvReader(simName) {
this.initFileName = "somepath";
this.eventsFileName = "somepath";
var self = this; // reference to this in current scope
$(simulationFiles).find('simulation').each(function() {
if ($(this).attr("name") == simName) {
// access the variables using self instead of this
self.initFileName += $(this).find("init").text();
self.eventsFileName += $(this).find("events").text();
}
});
}
答案 1 :(得分:4)
我创建了一个working demo(我将其更改为使用类,因此可以使用HTML)。
function CsvReader(simName) {
this.initFileName = "somepath";
this.eventsFileName = "somepath";
var context = this;
$(simulationFiles).find('simulation').each(function() {
if ($(this).attr("name") == simName) {
context.initFileName += $(this).find("init").text();
context.eventsFileName += $(this).find("events").text();
}
});
}
答案 2 :(得分:1)
要使其正常工作,最简单的更改是...将每个函数从普通(function(){})更改为箭头函数(()=> {}),它将自动采用定义它的功能。