我使用h1s = []
articles = soup.find_all("article")
for i in articles:
for x in i.find_all('h1'):
h1s.append(x.text)
处理器指令在T4模板中导入我的外部程序集。
在所说的程序集中,我试图访问assembly
属性。不幸的是,我似乎无法做到。
我尝试以这种方式获得主持人:
Host
不幸的是,尽管反射似乎映射到属性,但返回的值始终为public class MyTransformation : TextTransformation
{
// ...
public void SomeMethod()
{
object host = GetType().GetProperty("Host").GetValue(this);
if (host != null)
{
// do stuff
}
}
}
。
调用模板文件的null
指令中hostspecific
属性设置为true
。
我做错了什么?