0

我有一个带有一些过滤器属性的 ViewModel:

class IndexModel
    TermoBusca: ko.observable()

class ViewModel extends IndexModel
    Nome: ko.observable()
    Endereco: ko.observable()
    Contato: ko.observable()
    Responsaveis: ko.observableArray []
    ResponsaveisSelected: ko.observableArray []

以及生成 URL OData 的计算属性

@Url = ko.computed
    read: ->
        console.count "@Url:read called!"

        urlBase = "api/empresas?$expand=Teste"
        #return "#{urlBase}&#{@TermoBusca()}" if @TermoBusca() and @TermoBusca().indexOf("$filter") == 0

        group = []

        if @Nome()
            group.push "Name eq #{@Nome()}"

        if @Endereco()
            group.push "substringof('#{@Endereco()}', Endereco)"

        if @Contato()
            contatos = @Contato().split(/[\s,.]+/)
            group.push "(" + ko.utils.arrayMap(contatos, (nome) -> "substringof('#{nome}', Contato/Nome)").join(" or ") + ")"

        responsaveisSelected = ko.utils.unwrapObservable @ResponsaveisSelected()
        if responsaveisSelected and responsaveisSelected.length > 0
            group.push "(" + ko.utils.arrayMap(responsaveisSelected, (id) -> "Responsaveis/Id eq " + id ).join(" or ") + ")"

        if group.length > 0
            urlFilter = "$filter=#{group.join(' and ')}"
            #@TermoBusca urlFilter
            return "#{urlBase}?#{urlFilter}"
        urlBase
    owner: @
    deferEvaluation: true

这个想法很简单。当用户输入过滤器时,会自动生成 OData URL!

及其作品:https ://c9.io/ridermansb/knockoutjsobservable/workspace/index.html

新功能

这个想法是放置一个文本字段,您可以在其中创建过滤器:

例如:luci将按姓名和地址进行搜索。可以使用特殊字符,例如:@mike将搜索联系人姓名

该属性TermoBusca是一个文本字段,用户可以在其中输入搜索并将其转换为 OData Url。

但我不能让它工作!

完整代码在:https ://c9.io/ridermansb/knockoutjsobservable

我正在使用 git!

店主,没有财产TermoBusca!分支 *termo_busca* 包含单个文本字段的实现。

看这个视频:http: //screenr.com/AMj7

4

0 回答 0