0
我有一個查詢關於Ractive的從0.7到0.9.2遷移:Event.context不存在於遷移從0.7到0.9.2 [Ractive]
模板:
{{#if degrees }}
<a class="degree-matcher__degree-link" on-click="selectDegree" href="#">
{{ title }}
</a>
{{/if degrees}}
JS:
this.view.on('selectDegree', event => {
event.original.preventDefault()
this.updateUrl(event.context.id)
})
event.context已不存在,那麼解決此問題的最佳方法是什麼?