91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue文件中的ts代碼怎么分析

發布時間:2023-04-25 14:24:54 來源:億速云 閱讀:144 作者:zzz 欄目:編程語言

本篇內容介紹了“vue文件中的ts代碼怎么分析”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

我們知道vue文件是由'template'、'script'、'style'三種類型代碼組合成的。如果要分析<script lang="ts"></script>標簽內的ts代碼,要怎么做呢?

1.第一步: 通過@vue/compiler-dom 編譯器 這個parser來解析

以下測試代碼為例:

<template>
  <div>
    {{ testRef }}
  </div>
</template>
<script setup>
import { ref } from 'vue'
const testRef = ref('test')  
</script>
<style scoped>
.test-page {
  background-color: #fff;
}
</style>

把上面的代碼放到 AST explorer,parser 選擇 @vue/compiler-dom 

vue文件中的ts代碼怎么分析

可以發現,右側的AST結構:代碼被解析成 template、script和style這三部分,我們通過AST節點屬性就可以獲取到script標簽內代碼的字符串信息(圖中的綠色框部分)。

代碼如下:

const vueCompiler = require('@vue/compiler-dom')

const analyseCode = `<template>
<div>
  {{ testRef }}
</div>
</template>
<script setup>
import { ref } from 'vue'
const testRef = ref('test')  
</script>
<style scoped>
.test-page {
background-color: #fff;
}
</style>`

const parseVue = (vueCode) => {
  // 解析vue代碼
  const result = vueCompiler.parse(vueCode)
  const children = result.children

  // 獲取script片段
  let tsCode = '' 
  children.forEach(element => {
    if (element.tag == 'script') {
      tsCode = element.children[0].content;
    }
  })

  console.log(tsCode)
}

parseVue(analyseCode)

運行結果:

vue文件中的ts代碼怎么分析

2.第二步:通過typescript解析

在第一步中,我們通過@vue/compiler-dom提取出了 vue 文件 script標簽內的代碼字符串;接下來,把提取出的代碼字符串交給 typescript處理,生成對應的 AST。

以上面代碼為例:

const vueCompiler = require('@vue/compiler-dom')
const tsCompiler = require('typescript') 

const analyseCode = `<template>
<div>
  {{ testRef }}
</div>
</template>
<script setup>
import { ref } from 'vue'
const testRef = ref('test')  
</script>
<style scoped>
.test-page {
background-color: #fff;
}
</style>`

const parseVue = (vueCode) => {
  // 解析vue代碼
  const result = vueCompiler.parse(vueCode)
  const children = result.children

  // 獲取script片段
  let tsCode = '' 
  children.forEach(element => {
    if (element.tag == 'script') {
      tsCode = element.children[0].content;
    }
  })

  console.log(tsCode)

  // 將ts代碼轉化為AST
  // 第一個參數為命名,可以隨意填,
  // 第二個參數是需要生成AST的源代碼字符串
  // 第三個參數表示TS編譯器版本
  // 第四個參數表示是否添加parent節點信息
  const ast = tsCompiler.createSourceFile('testCode', tsCode, tsCompiler.ScriptTarget.Latest, true)
  console.log(ast)
  return ast
}


parseVue(analyseCode)

運行結果(圖片不是完整的)

vue文件中的ts代碼怎么分析

完整的AST explorer

vue文件中的ts代碼怎么分析

3.第三步:遍歷分析 AST 各級節點

通過TypeScript 的 CompilerAPI : forEachChild遍歷AST節點

const ast = parseVue(analyseCode) // 上面示例的函數
const walk  = (node) => {                        // AST遍歷函數
  tsCompiler.forEachChild(node, walk);          // 遍歷AST節點
  console.log(node);                            // 輸出節點信息
}
walk(ast)

然后根據代碼中常見的字面量、標識符、表達式、語句、模塊語法、class 語法等語句各自都有對應的 AST 節點類型,就可以去做相應的分析了

“vue文件中的ts代碼怎么分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宝山区| 舞钢市| 抚州市| 盐边县| 商丘市| 宁化县| 南投市| 祥云县| 高邮市| 阿拉尔市| 咸丰县| 体育| 道孚县| 读书| 江都市| 灌阳县| 浑源县| 蓬安县| 南开区| 江安县| 合水县| 嘉鱼县| 法库县| 长葛市| 梅州市| 新兴县| 金阳县| 衡南县| 周宁县| 金山区| 卢龙县| 皮山县| 株洲市| 海伦市| 西乡县| 双峰县| 牡丹江市| 班戈县| 廉江市| 青龙| 潢川县|