0
DEFAULT_RECORDS = [{ id: 1, name: 'John Evans', number: '01928 356115' },{ id: 16, name: 'Murbinator', number: '053180 080000' }];

-

lookup: function (name) {
            var retrievedRecords = {};
            var _this = this;
            Record.findAll().then(function () {
                var params = {
                    where: {
                        name: {
                            'in': name
                        }
                    }
                };
                retrievedRecords = Record.filter(params);
                debugger;
                _this.lookupSuccess(retrievedRecords);
            }).catch(function (error) {
                console.log(error);
            });
        },

“约翰”在哪里'in': name没有找到记录

“John Evans”在哪里'in': name找到了一条记录。

查看角度数据问题238,这似乎是我应该过滤的方式,但不是我期望为子字符串过滤返回的值。

我无法弄清楚为什么在debugger停止执行时没有为子字符串过滤器返回任何记录。

角度数据:1.5.3 角度:1.3.8

4

1 回答 1

2

你要找的'contains'不是'in'。看起来这个功能是在您发布的问题之后添加的(259

于 2015-01-16T14:11:32.907 回答