這是一個非常簡單的例子。我有一個表格,我需要一個隱藏字段,所以我需要使用ref
的價值:反應參考值不顯示
<form>
<input ref="num" type="hidden" name="amount" value="99"/>
</form>
var number = this.refs.num.value;
console.log(number); // nothing
console.log(this.refs.num); // shows the field
如何獲得與參考價值?
'this.refs.num.value'是正確的。你能提供更多的上下文給你的代碼嗎?你在哪裏試圖抓住'this.refs'? –
@BradColthurst從一個函數。 'foo:function(){...}' – Sylar
你在哪裏調用函數? –