`style`屬性期望一個從樣式屬性到值的映射
P粉817354783
2023-08-15 15:37:44
<p>在使用React建立前後影像滑動器時,我遇到了這個錯誤。
我不知道是否需要導入它,但不幸的是它是一個外部文件。
任何提示和建議都將不勝感激</p>
<pre class="brush:php;toolbar:false;"><div class="scroller scroller-top">
<svg class="scroller__thumb" xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><polygon points= "0 50 37 68 37 32 0 50" style="fill:rgb(24,24,62)"/><polygon points="100 50 64 32 64 68 100 50" style="fill:rgb(24 ,24,62)"/></svg>
</div></pre>
<p>我期望看到SVG圖標,但實際上拋出了一個錯誤,如上述描述所示</p>
您可以直接在多邊形上新增
fill
屬性,如下所示:獎勵:如果您使用React,則
class
屬性應為className
。