例如
var contents = 'some text';
function fileSave(path){
// I'll handle saving the file, but I need the file contents
}
contents.fileSave('index.html');
因此,当函数对内容变量很有趣时,函数可以访问该变量。就像 replace() 在 JavaScript 中的工作方式一样。
前任。
str.replace();
但在这种情况下
contents.fileSave();
该变量是可互换的,该函数也适用于任何变量。
对不起,新手。。