我在角度HTML文件中提到了三个元素
<element1></element1>
<element2></element2>
<element3></element3>
我想在执行element2组件时重新加载element2 如何重新加载element2的内容?
答案 0 :(得分:1)
要每分钟更新一个特定元素,您需要在其中设置一个间隔。
例如,假设您想要每分钟更新 super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final Button RsaButton = (Button) findViewById(R.id.RSA);
final Button RsaInfoButton = (Button) this.findViewById(R.id.RSAInfo);
final Button AesButton = (Button) this.findViewById(R.id.AES);
final Button CaesarNormalButton = (Button)this.findViewById(R.id.CaesarNormal);
final Button CaesarNormalInfoButton = (Button) this.findViewById(R.id.CaesarNormalInfo);
final Button CaesarAutomaticButton = (Button) this.findViewById(R.id.CaesarAutomatic);
final Button CaesarAutomaticInfoButton = (Button) this.findViewById(R.id.CaesarAutomaticInfo);
RsaButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
RsaButton.setText("df");
}
});
的索引,您可以拥有
element2
内的函数如下所示:
setInterval
这里我以刚更新索引为例,您也可以通过创建API来更新列表 打电话等......
我创建了一个plunker demo更新
@Component({
selector: 'element2',
template: `
<div>
<h2>Element 2 Index {{index}}</h2>
</div>
`,
})
export class Element2 {
index: number = 0;
constructor() {
// we need to pass interval in milliseconds
// 1 minute = 60 seconds,
// 1 second = 1000 ms
setInterval(() => { this.index++;}, 1000*60);
}
}
每秒。