我正在使用visual studio代码v1.17,我正在使用纯javascript进行chrome扩展开发。 Visual Studio代码v1.17支持javascript和其他几种语言的区域折叠功能。
因此,我在一个.js文件中创建了一个类,并在其中编写了getter setter方法。喜欢
//#region EmailObj
get EmailObj() {
this._EmailObj = localStorage.getItem("CurrentEmail");
try {
this._EmailObj = JSON.parse(this._EmailObj);
}
catch(e) {
this._EmailObj = null;
}
return this._EmailObj;
}
set EmailObj(newValue) {
this._EmailObj = JSON.stringify(newValue);
localStorage.setItem("CurrentEmail", this._EmailObj)
}
remove_EmailObj() {
this._EmailObj = null;
localStorage.removeItem("CurrentEmail");
}
//#endregion EmailObj
现在根据https://code.visualstudio.com/updates/v1_17#_folding-regions所述的文件。加号(+)图标应显示在#region和#endregion部分附近(因此,我可以显示/隐藏特定区域),但它没有显示在那里。
那么,有人帮助我,我在这里失踪了吗?
答案 0 :(得分:0)
我将VS代码更新为1.17.2,现在正在我这边工作。