<body>
<app-root></app-root>
<script>
function createClusterer() {
alert("test")
}
</script>
</body>
2.然后在ts中,写(这个是事件调用,自己写吧,就一个button的事情)
onclick() {
window 'createClusterer'
}
这样就可以调用js方法了。
<body>
<app-root></app-root>
<script>
function createClusterer() {
alert("test")
}
</script>
</body>
2.然后在ts中,写(这个是事件调用,自己写吧,就一个button的事情)
onclick() {
window 'createClusterer'
}
这样就可以调用js方法了。