Tag: filter

-ms-filter vs filter有什么区别?

IE的filter和-ms-filter属性之间有什么区别? 如果我使用一个,我应该使用它们两个? 他们做同样的事情,但每个工作只有特定版本的IE浏览器?

在Scala中的filter,地图,flatMap期间如何轻松地将一个集合types转换为另一个集合types?

假设我有一个List[Int] ,并且我想在每个元素上调用toString ,并将结果作为Vector[String] 。 斯卡拉有什么不同的方式来做到这一点? 是否有一个解决scheme与最小量的显式打字? – 即,我想指定我想要一个Vector而不是一个List ,但我想从过滤函数推断String参数。 还是应该显式传递一个CanBuildFrom实例? 我从哪里得到这些 – 对于Seq s, Set s和Map s?

Datetime在where子句中

如何在SQL的where子句中select12/20/2008? 服务器是SQL Server 2005。 select * from tblErrorLog where errorDate = '12/20/2008'

在CollectionViewSource上触发filter

我正在使用MVVM模式在WPF桌面应用程序上工作。 我想基于在TextBox键入的文本筛选ListView的一些项目。 我希望ListView项目被过滤,因为我改变了文本。 我想知道如何在filter文本更改时触发filter。 ListView绑定到一个CollectionViewSource ,绑定到ViewModel上的ObservableCollection 。 filter文本的TextBox绑定到ViewModel上的一个string,它应该是UpdateSourceTrigger=PropertyChanged 。 <CollectionViewSource x:Key="ProjectsCollection" Source="{Binding Path=AllProjects}" Filter="CollectionViewSource_Filter" /> <TextBox Text="{Binding Path=FilterText, UpdateSourceTrigger=PropertyChanged}" /> <ListView DataContext="{StaticResource ProjectsCollection}" ItemsSource="{Binding}" /> Filter="CollectionViewSource_Filter"链接到后面的代码中的事件处理程序,它只是在ViewModel上调用filter方法。 当FilterText的值发生变化时进行筛选 – FilterText属性的setter调用一个FilterList方法,该方法遍历ViewModel中的ObservableCollection ,并在每个ViewModel项上设置一个boolean FilteredOut属性。 我知道FilteredOut属性在filter文本更改时更新,但List不刷新。 CollectionViewSourcefilter事件只有在重新加载UserControl的时候才会被触发。 我已经尝试更新filter信息后调用OnPropertyChanged("AllProjects") ,但它并没有解决我的问题。 (“AllProjects”是我的ViewModel的CollectionViewSource绑定的ObservableCollection属性。) 当FilterText TextBox的值发生变化时,如何让CollectionViewSource重新进行自我刷新? 非常感谢

在Python中的数组filter?

例如,我有两个列表 A = [6, 7, 8, 9, 10, 11, 12] subset_of_A = [6, 9, 12]; # the subset of A the result should be [7, 8, 10, 11]; the remaining elements 有没有在python内置函数来做到这一点?

如何在Angular 2中用TypeScript过滤数组?

对于我来说,ng-2亲子数据inheritance一直是个难题。 什么似乎可能是一个很好的工作实际的解决scheme是过滤我的数据总数组到一个由只有一个父id引用的子数据组成的数组。 换句话说:数据inheritance成为一个父ID的数据过滤。 在一个具体的例子中,这可以看起来像:过滤书籍数组,只显示具有特定store_id的书籍。 import {Component, Input} from 'angular2/core'; export class Store { id: number; name: string; } export class Book { id: number; shop_id: number; title: string; } @Component({ selector: 'book', template:` <p>These books should have a label of the shop: {{shop.id}}:</p> <p *ngFor="#book of booksByShopID">{{book.title}}</p> ` ]) export class BookComponent { @Input() store: […]

Django的Queryset与反向外键过滤

我有以下的Django模型: class Make: name = models.CharField(max_length=200) class MakeContent: make = models.ForeignKey(Make) published = models.BooleanField() 我想知道是否有可能(无需直接编写SQL)生成一个查询集,其中包含所有的Make和每个相关的MakeContent ,其中published = True 。

为什么GCC -O3在filter迭代器上通过std :: deque产生无限的std :: distance?

经过很多的痛苦和苦难之后,我跟踪了一些非常奇怪的行为,当std::distance在给定范围的boost::filter_iterator时, std::distance永远不会返回std::deque 。 看来这个问题对于使用-O3优化的GCC(6.1+)来说是独一无二的。 这是一个certificate违规行为的例子: #include <string> #include <deque> #include <iterator> #include <iostream> #include <boost/iterator/filter_iterator.hpp> struct Foo { std::string bar, s = ""; char a = '\0'; }; int main() { const std::deque<Foo> foos(14, {""}); const std::string test {}; const auto p = [test] (const auto& foo) { return foo.bar == test; }; using boost::make_filter_iterator; […]

在asp.net mvc中以什么顺序执行filter

在MVC中,我们可以使用不同的filter来修饰操作方法 [HttpPost] [Authorize] public ActionResult mymethod(){} HttpPost派生自MethodSelectorAttribute (可能间接), Authorize派生自ActionFilterAttribute 。 我的问题是:他们在MVC请求pipe道中执行的顺序? 我试图去searchMVC源代码,但没有find相关的代码位。

redirect到指定的控制器和动作在asp.net mvc行动filter

我写了一个操作filter,它检测到一个新的会话,并尝试将用户redirect到一个页面,通知他们已经发生了这种情况。 唯一的问题是我无法弄清楚如何使它redirect到操作filter中的控制器/操作组合。 我只能找出如何redirect到指定的url。 有没有一种直接的方式来redirect到控制器/操作组合在MVC2中的操作filter?