我有一个名为 person 的范围模型,它有名字、姓氏和全名。我的 goQuery 适用于此:
$scope.person = $goQuery('person', { userName: $scope.person.findme }, { sort: { 'userName': 'asc' }, limit: 1 }).$sync();
我遇到的唯一问题是它只填充我正在搜索的字段的值,而不是整个模型。我错过了什么?
$scope.person.findme 会抛出错误,因为 $scope.person 尚未定义。我不确定这是如何工作的。
这是一个工作示例:
$scope.person = $goQuery('person', 'person', { userName: 'user1' }, { sort: { 'userName': 'asc' }, limit: 1 }).$sync();
$scope.person.$add({ userName: 'user1', fname: 'a', lname: 'b'});
$scope.person.$add({ userName: 'user2', fname: 'c', lname: 'd'});
$scope.person.$add({ userName: 'user3', fname: 'e', lname: 'f'});
window.person = $scope.person;
如果您查看 window.person 上的模型,您应该会看到 user1 的 ID 及其下方的数据。
好的。谢谢科林麦克唐纳。这是您将结果返回到您的范围的方式: HTML 代码:
<label>Find User:</label>
<input type="text" ng-model="person.findme" placeholder="Enter Full Name to Search..." />
<input type="button" id="Find" value="Search" ng-click="Find()" />
JAVA脚本:
$scope.Find = function () {
console.log('entering find method...')
$scope.person = $goQuery('person', { userName: $scope.person.findme }, { limit: 1 }).$sync();
$scope.person.$on('ready', function () {
var id = $scope.person.$$index[0];
if (!id) {
// no results found
return;
}
$scope.person = $scope.person[id];
$scope.person.id = id;
});
};