gpt4 book ai didi

mongodb - 转换后对集合进行排序

转载 作者:可可西里 更新时间:2023-11-01 10:31:52 24 4
gpt4 key购买 nike

我有一个集合,它使用转换来实例化类中的文档。然后这些实例设置新属性,从第三部分 api 获取数据并使其响应。

现在,我需要根据检索 react 数据的方法对这些对象进行排序。但是我不能执行集合查找排序或使用集合 Hook ,因为它在转换文档之前对文档进行操作,因此该方法不可用。

因此,在我看来,根据不在 mongo 中的数据对该集合进行排序的唯一方法是覆盖 UI.each 元素并在其中添加排序。但我对 Meteor 很陌生,并不真正了解 UI.each 的工作原理以及如何覆盖它以实现该排序方法。

下面是我的代码中的一个简化示例:

模型

class @BaseCrypto

constructor: (@address) ->
@keys =
balance: "Processing..."
@deps = {}

ensureDeps: (key) ->
if not @deps[key]
@deps[key] = new Deps.Dependency()
@set_balance()

get_balance: ->
"""Retrieve value set from @set_balance()"""
@ensureDeps "balance"
@deps.balance.depend()
return @keys.balance

set_balance: (url, lambda_balance) ->
cls = this
Meteor.call "call_url", url, (err, result) ->
if err
throw new Meteor.Error err.error, err.reason
else
cls.keys.balance = lambda_balance result
cls.deps.balance.changed()

收藏

@Addresses = new Meteor.Collection "addresses",
transform: (doc) ->
doc = BaseCrypto doc.address
doc.set_balance url, lambda_balance
return doc

助手

Template.coinsManager.helpers
donationAddresses: ->
Addresses.find {}

模板

template(name="coinsManager")

div
div.addresses
{{#each donationAddresses}}
{{> addressItem}}
{{/each}}

如何让 {{#each}} 根据他们的方法 get_balance() 对我的地址进行排序?

编辑

我们可以对模板中的集合查询执行 fetch() 以检索转换后的元素。在这种情况下你如何使用 observe() ?因为在这种情况下, react 性会丢失并且地址不会更新。

之前:

no sorting

donationAddresses: ->
coinsManager = Meteor.users.findOne
"emails.address": "coinsmanager@gmail.com"
if coinsManager
Addresses.find
userId: coinsManager._id

之后: sorting

donationAddresses: ->
coinsManager = Meteor.users.findOne
"emails.address": "coinsmanager@gmail.com"
if coinsManager
addresses = Addresses.find
userId: coinsManager._id
addresses = addresses.fetch().sort (a, b) ->
a = a.get_balance()
b = b.get_balance()
if not _.isNumber a
a = -1
if not _.isNumber b
b = -1
b - a
return addresses

最佳答案

以下代码会将源集合 (myCollection) 同步到本地集合 (myLocalCollection),并对新的/更新的文档应用转换。

myCollection = new Meteor.Collection('myCollection')
myLocalCollection = new Meteor.Collection(null)

_myTransform = (doc)->
doc.awesome = (doc.someProp > 3)
return

_syncWithTransform = (destination, xform)->
return {
added: (doc)->
destination.insert(xform(doc))
return

changed: (doc)->
destination.update(id, xform(doc))
return

removed: (doc)->
destination.remove(doc._id)
return
}

myCollection.find().observe(_syncWithTransform(myLocalCollection, _myTransform))

如果您只想在特定字段更改时执行转换任务,您可以创建两个转换函数,并使用 observeChanges 检查特定字段是否已更新-

myCollection = new Meteor.Collection('myCollection')
myLocalCollection = new Meteor.Collection(null)

_transformNew = (doc)->
doc.awesome = (doc.someProp > 3)
return

_transformUpdate = ($modifier)->
if $modifier.$set?.someProp?
$modifier.$set.awesome = ($modifier.$set.someProp > 3)
return $modifier

_syncWithTransform = (destination, xnew, xmod)->
return {
added: (id, fields)->
fields._id = id
destination.insert(xnew(fields))
return

changed: (id, fields)->
$modifier = {}
for key, value of fields
if value == undefined
unless $modifier.$unset?
$modifier.$unset = {}
$modifier.$unset[key] = true
else
unless $modifier.$set?
$modifier.$set = {}
$modifier.$set[key] = value
destination.update(id, xmod($modifier))
return

removed: (id)->
destination.remove(id)
return
}

myCollection.find().observeChanges(_syncWithTransform(myLocalCollection, _transformNew, _transformUpdate()))

一旦你有了单独的集合,里面装满了转换后的文档——你就可以进行常规的响应式(Reactive)和排序查询,例如。 myLocalCollection.find({},{sort:['a','b','c']})

关于mongodb - 转换后对集合进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21931461/

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