KnockoutJS 排序多维 ko.observableArray

发布于 2024-12-27 20:50:38 字数 367 浏览 0 评论 0原文

我真的很难对 ko.observableArray 进行排序。在过去的一个小时里我一直在寻找解决方案,并且我非常确信我正在按照书本去做。

基本上,问题似乎来自于元素数组在排序时实际上并不存在的事实。每个项目都由一个函数表示,我认为该函数允许 KnockoutJS 侦听突变...但它对我没有多大帮助:)

链接到 JSfiddle | http://jsfiddle.net/farina/W7HJP/

查看我的小提琴并单击排序链接。正如您所看到的,您将得到一堆 NaN 值,而不是实际排序。

任何帮助将不胜感激!

I'm really struggling to sort a ko.observableArray. I've been searching for solutions for the past hour, and I'm pretty convinced I'm doing it by the book.

Basically the problem seems to come from the fact that the array of elements doesn't actually exist at sort time. Each item is represented by a function which I assume allows KnockoutJS to listen for mutations...but it's not helping me much :)

Link to JSfiddle | http://jsfiddle.net/farina/W7HJP/

Check out my fiddle and click the sort link. As you can see you'll get a bunch of NaN values instead of actual sorting.

Any help would be greatly appreciated!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疾风者 2025-01-03 20:50:38

当您访问可观察值的值时,您需要将其作为具有零参数的函数来调用。

所以:

var myObservable = ko.observable("Bob");
myObservable("Ted"); //set the value to something else
alert(myObservable());  //read the current value "Ted"

所以,按照你的排序,你会这样做:

        this.sortItems = function () {
            this.incidents.sort(function (a, b) {
                return b.id() - a.id();
            });
        };

http://jsfiddle.net/rniemeyer/W7HJP/ 10/

When you access an observable's value, you need call it as a function with zero arguments.

So:

var myObservable = ko.observable("Bob");
myObservable("Ted"); //set the value to something else
alert(myObservable());  //read the current value "Ted"

So, in your sort, you would do:

        this.sortItems = function () {
            this.incidents.sort(function (a, b) {
                return b.id() - a.id();
            });
        };

http://jsfiddle.net/rniemeyer/W7HJP/10/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文