欧美亚洲中文,在线国自产视频,欧洲一区在线观看视频,亚洲综合中文字幕在线观看

      1. <dfn id="rfwes"></dfn>
          <object id="rfwes"></object>
        1. 站長(zhǎng)資訊網(wǎng)
          最全最豐富的資訊網(wǎng)站

          vscode怎樣注釋方法代碼塊

          vscode怎樣注釋方法代碼塊

          Alt 在mac 是option鍵。

          方法塊的注釋:

          1、vscode 里安裝插件 Document This

          2、將光標(biāo)放置于function上面,快捷鍵是 Ctrl+Alt+D 加 Ctrl+Alt+D

            /**  *網(wǎng)絡(luò)請(qǐng)求  *  * @export  * @class HttpUtil  */ export default class HttpUtil {     static get(url) {         return new Promise((resolve,reject)=>{             fetch(url)               .then(response=>response.json())               .then(result=>resolve(result))               .catch(erro=>reject(error))         })     } }

          多行注釋:[alt+shift+A]

          /* export default class HttpUtil {     static get(url) {         return new Promise((resolve,reject)=>{             fetch(url)               .then(response=>response.json())               .then(result=>resolve(result))               .catch(erro=>reject(error))         })     } } */

          相關(guān)文章教程推薦:vscode教程

          贊(0)
          分享到: 更多 (0)
          網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)