我正在尝试在 mongodb 中进行“喜欢”查询。我看到这是用正则表达式完成的,所以我试图这样设置:
$scope.clients = Client.query({
q:angular.toJson({
name: RegExp($routeParams.str)
})
});
问题是 angular.toJson 函数没有得到任何正则表达式: http ://plnkr.co/edit/idXMT1
有没有其他方法可以做到这一点?