Questions tagged «computed-properties»

11
具有动态键名的Reactjs setState()?
编辑:这是重复项,请参阅此处 设置状态时,找不到任何使用动态键名的示例。这就是我想做的: inputChangeHandler : function (event) { this.setState( { event.target.id : event.target.value } ); }, 其中event.target.id用作要更新的状态键。在React中这不可能吗?



4
VueJS如何在v-for中使用计算属性
如何在列表中使用计算属性。我正在使用VueJS v2.0.2。 这是HTML: <div id="el"> <p v-for="item in items"> <span>{{fullName}}</span> </p> </div> 这是Vue代码: var items = [ { id:1, firstname:'John', lastname: 'Doe' }, { id:2, firstname:'Martin', lastname: 'Bust' } ]; var vm = new Vue({ el: '#el', data: { items: items }, computed: { fullName: function(item) { return item.firstname + …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.