我正在使用Svelte (v2.7) 和Sapper (v0.12)。根据docs,this.refs
应该是可用的,但它对undefined
我来说,无论是 inoncreate
还是 custom 方法。
我的 index.html 看起来像这样:
<select id="wifi-ssid" ref="wifi-ssid">
...
<script>
export default {
oncreate() {
console.log('this.refs is undefined here', this.refs);
},
methods: {
getIsValid() {
console.log('this.refs is undefined here too', this.refs);
// ...
},
// ...
}
};
</script>
(完整代码在这里)。
我假设这不是一个错误(否则每个人都会遇到它?)而且我有问题,因为这是我第一次使用它。