gpt4 book ai didi

javascript - 使用 jQuery.val() 更新 Ember TextField 的值

转载 作者:行者123 更新时间:2023-11-28 01:49:24 25 4
gpt4 key购买 nike

我认为有以下几行:

 //this code is within a {{#each item in controller.content}} so id will not be unique
//so by giving it just an id like i have is not going to work
{{#each item in controller.content}}
<div class="pull-right" id="qnty-bulk">{{view Ember.TextField class="span1 qnty-bulk" id="qnty-bulk" valueBinding="item.qnty" type="number" min="1" max="9999999" disabled=true}}</div>
<button class="pull-right" {{ action "increase" }}>
Up
</button>
{{/each}}

在我的 Controller 中,我有操作

 actions: {
increase: function() {
var inputField = $("#qnty-bulk"); //how can I access the Ember.TextField here for each of my items in the {{#each item in controller.content}}??
var inputValue = inputField.val();
inputValue = (inputValue != null && inputValue != '' ? (isNaN(inputValue) ? 0 : inputValue) : 0);
inputValue++;
console.log(inputField.val());
inputField.val(inputValue);
},

我想每次单击向上按钮时将文本字段的值增加 1我怎样才能做到这一点?我可以使用jquery吗?

最佳答案

你可以使用 jQuery。但我认为您缺少数据绑定(bind)的概念。

您使用 item.qnty 属性为 TextField 进行了值绑定(bind)。

你的增加函数看起来像这样:

actions: {
increase: function() {
var quantity = this.get('model.item.qnty');
this.set('model.item.qnty', quantity++);
},
}

您甚至可以使用快捷功能:

actions: {
increase: function() {
this.increaseProperty('model.item.qnty');
},
}

Ember 将自动检测 item.qnty 已更改并更新 TextField 中的值。

您不应该通过 Ember 框架以外的任何其他方式更新您的 Ember 值。这样做可能会导致您的 Ember 应用程序崩溃,或者在这种情况下无法按预期工作。

根据您的评论进行编辑。

您当前的 hbs:

{{#each item in controller}}
<div {{action increase}} ></div>
{{/each}}

当您想要编辑数组中的项目时,这将触发数组 Controller 中的 increase 函数。

让我们为您的项目指定一个项目 Controller :

{{#each item in controller itemController='myItem'}}
<div {{action increase}} ></div>
{{/each}}

您的 MyItemController:

App.MyItemController = Ember.ObjectController.extend({

actions: {
increase: function(){
this.increaseProperty('model.qnty');
}
}
})

这将触发项目 Controller 中的increase功能,您可以在其中直接访问您的项目。为数组使用 ArrayController,为该数组中的项目使用 ObjectController 总是好的。

关于javascript - 使用 jQuery.val() 更新 Ember TextField 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19901618/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com