Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Preprocessed Text Templates ( .tt) 。如何将对象传递给另一个包含Preprocessed Text Template?我检查了文档,但没有找到任何示例。
Preprocessed Text Templates
.tt
Preprocessed Text Template
谢谢
如果您查看从您的预处理模板生成的代码,您会发现它只是一个部分类。传入数据的一个好方法是简单地添加类的另一个部分,并为其提供一个成员和 Getter/Setter 对。如果您随后在该预处理模板中包含一些进一步的代码,它将有助于同一个类,因此您添加的成员仍然可用。另一方面,如果您包含的代码只是类功能时钟 (<#+ #>),那么您可能会定义可以调用的方法,在这种情况下,您可以简单地添加数据以作为额外参数传递到那些方法。