2017-09-03 92 views
2

我在ionic3項目的html頁面中使用了一些javascript。ionic3使用ref attr在span標記html

<span id="time" ref="{{product.time}}"></span> 

但當建設項目有以下錯誤:

Can't bind to 'ref' since it isn't a known property of 'span'. 

有誰知道如何解決這個問題?非常感謝。

+0

什麼是'ref'這裏?那是自定義屬性? – Sampath

+0

你能解決這個問題嗎? – sebaferreras

+0

對不起,最後我用角度方式ngmodel來解決問題 – Nulra

回答

1

如果你想設置一個自定義屬性,您可以使用attribute binding這樣的:

<span id="time" [attr.ref]="product.time"></span>