亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長(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)