前言代码案例基于Api13。在前边的文章中,关于wrapBuilder传递参数我们有过概述,无论是定义在局部还是全局,传递参数都是非常的简单,直接调用builder函数即可,简单案例如下所示:BuilderfunctionTextView(value:string){Text(value)}EntryComponentstructIndex{textBuilder:WrappedBuilder<[string]>wrapBuilder(TextView)build(){Column(){this.textBuilder.builder("我是传递的参数")}.width("100%").height("100%").j...