本篇文章跟大家介紹微信小程式中import和include差異。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。
相關學習推薦:小程式開發教學課程
#import 有作用域的概念,即只會在import 目標檔中定義的template,而不會import 目標檔案import 的template
<!-- A.wxml --> <template name="A"> <text> A template </text> </template>
<!-- B.wxml --> <import src="a.wxml"/> <template name="B"> <text> B template </text> </template>
<!-- C.wxml --> <import src="b.wxml"/> <template is="A"/> <!-- 错误不能多级引用A --> <template is="B"/>
include 可以將目標檔案除了外的整個程式碼引入,相當於是拷貝到include
<!-- index.wxml --> <include src="header.wxml"/> <view> body </view> <include src="footer.wxml"/>
<!-- header.wxml --> <view> header </view>
<!-- footer.wxml --> <view> footer </view>
更多程式相關知識,請訪問:程式設計入門! !
以上是小程式中import和include有什麼差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!