- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个搜索,它根据多个选择输入过滤存储为 JSON 数据的产品,这些输入将它们的值存储为范围变量(3 个使用 ng-options 输出,1 个硬编码)。
我有一个“清除过滤器”按钮,可以重置为过滤器存储的变量,但是当我尝试同时将输入重置为其默认值时,只有一些重置。如果只选择了一个过滤器,它将始终重置。
HTML:
<div class="form-group">
<select ng-options="loc as loc.name for loc in yachtLocations | filter:{parent:0}:true" class="form-control" ng-model="nameRegion" ng-change="updateRegionValues(nameRegion, 'yachts')">
<option value="">Select Region</option>
</select>
</div>
<div class="form-group">
<select ng-options="loc as loc.name for loc in yachtLocations | filter:filterCountries" class="form-control" ng-model="nameCountry" ng-change="updateCountryValues(nameCountry, 'yachts')">
<option value="">Select Country</option>
</select>
</div>
<div class="form-group">
<select ng-options="loc as loc.name for loc in yachtLocations | filter:filterDest" class="form-control" ng-model="namePort" ng-change="updateDestValues(namePort, 'yachts')">
<option value="">Select Port</option>
</select>
</div>
<div class="form-group">
<select class="form-control" ng-model="valueType" ng-change="updateTypeValues(valueType, 'yachts')">
<option value="">Vessel Type</option>
<option value="20">Motor</option>
<option value="19">Sail</option>
</select>
</div>
<a class="clearFilters" ng-show="emptyFilters()" ng-click="resetValues()">Clear Filters</a>
相关JS:
totApp.controller('mainController',['$scope', '$filter', function ($scope, $filter){
$scope.yachts = yachts;
$scope.superyachts = superyachts;
$scope.motorboats = motorboats;
$scope.yachtLocations = yachtLocations;
$scope.superYachtTenderLocations = superYachtTenderLocations;
$scope.motorBoatLocations = motorBoatLocations;
$scope.type = null;
$scope.loc = {
region : { name : '', id : null },
country : { name : '', id : null, children : 0 },
dest : { name : '', id : null }
}
$scope.updateRegionValues = function($value, $type) {
if ($value == null) {
$scope.loc.region.name = '';
$scope.loc.region.id = null;
$scope.loc.country.name = '';
$scope.loc.country.id = null;
$scope.loc.country.children = 0;
$scope.loc.dest.name = '';
$scope.loc.dest.id = null;
}
else {
var termID = $value.term_id;
$scope.changeRegion(termID, $type);
$scope.showAllItems($type);
}
}
$scope.updateCountryValues = function($value, $type) {
if ($value == null) {
$scope.loc.country.name = '';
$scope.loc.country.id = null;
$scope.loc.country.children = 0;
$scope.loc.dest.name = '';
$scope.loc.dest.id = null;
}
else {
var termID = $value.term_id;
var children = $value.children
$scope.changeCountry(termID, children, $type);
$scope.showAllItems($type);
}
}
$scope.updateDestValues = function($value, $type) {
if ($value == null) {
$scope.loc.dest.name = '';
$scope.loc.dest.id = null;
}
else {
var termID = $value.term_id;
$scope.changeDest(termID, $type);
$scope.showAllItems($type);
}
}
$scope.updateTypeValues = function($value, $boat) {
if ($value == null) {
$scope.type = null;
}
else {
$scope.updateType(parseInt($value));
$scope.showAllItems($boat);
}
}
$scope.resetValues = function() {
$scope.pagesShown = 1;
$scope.loc.region.name = '';
$scope.loc.region.id = null;
$scope.loc.country.name = '';
$scope.loc.country.id = null;
$scope.loc.country.children = 0;
$scope.loc.dest.name = '';
$scope.loc.dest.id = null;
$scope.type = null;
}
$scope.updateType = function($value) {
$scope.type = $value;
}
//Same function for scope.loc.country and scope.loc.dest
//code using $type edited out
$scope.changeRegion = function( id, $type ){
$scope.loc.region.id = id;
}
}
我试过用
<option ng-selected="this.loc.dest.id == null" value="">Select Port</option>
(每个选项的每个相关范围变量都相同)还有
$('.form-control').val("");
和
$('.form-control').prop("selectedIndex", 0);
在 $scope.resetValues 函数的底部。所有这些解决方案都会产生相同的结果——一个或两个 <select>
除非只有一个被更改,否则 s 将被重置。
------------编辑------------
忘记包含过滤器。
$scope.filterCountries = function($country) {
if ($scope.loc.region.id != null) {
return $country.parent == $scope.loc.region.id;
}
else {
var parents = new Array();
var location;
location = $scope.yachtLocations;
angular.forEach(location, function(location){
if (location.parent == 0) {
parents.push(location.term_id);
}
});
return parents.includes($country.parent);
}
}
$scope.filterDest = function($dest) {
if($scope.loc.country.id != null) {
return $dest.parent == $scope.loc.country.id;
}
else {
var parents = new Array();
var moreparents = new Array();
var location;
location = $scope.yachtLocations;
angular.forEach(location, function(location){
if (location.parent == 0) {
parents.push(location.term_id);
}
});
angular.forEach(location, function(location){
if (parents.includes(location.parent)) {
moreparents.push(location.term_id);
}
});
return moreparents.includes($dest.parent);
}
}
最佳答案
您要重置的是 ng-model
值。如果您将代码更改为此,它应该可以工作:
$scope.resetValues = function() {
$scope.nameRegion = ''; //Default value here
$scope.nameCountry = '';//Default value here
$scope.namePort = '';//Default value here
$scope.valueType = '';//Default value here
}
关于javascript - 将多个 ng-options 输入一起重置为默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36917592/
在angular 6项目中,我使用angular cli命令ng g lierary @some/libName创建了 Angular 库。在我的库中,我有一个需要@ng-bootstrap/ng-b
我在 plunker 有一个简单的例子.我在一个元素上有一个 ng-show,另一个元素有一个选择。选择应该切换显示/隐藏其他(输入)元素。最初将 select 设置为 Yes 会按预期显示其他输入元
我需要一个由其定义的属性(受监控)过滤的数据列表,我不能这样做: ng-if="project.monitored" 因为我需要计算不受监控的数量。 对于这个例子,我简化了从 getProjects(
我知道 ng-show 和 ng-hide 影响元素上设置的类,而 ng-if 控制元素是否呈现为 DOM 的一部分 是否有选择 ng-if 而不是 ng-show/ng-hide 或反之亦然的示例?
我试图理解 ng-if 和 ng-show/ng-hide 之间的区别,但它们看起来相同对我来说。 选择使用其中之一时我应该记住什么区别吗? 最佳答案 ngIf ngIf 指令根据表达式删除或重新创建
我有一个基本问题,通过查看 Angular 文档或 Google 找不到答案,因此我假设这是不可能的,但我想确定一下。 基本上我想要的是使用一个变量,例如$scope.loggedIn,如下所示: H
据我了解ng-show和ng-hide影响元素上设置的类,并且 ng-if控制元素是否呈现为 DOM 的一部分。 是否有选择 ng-if 的指南超过ng-show/ng-hide或者反之亦然? 最佳答
我的 html 中有几个 div。我正在将内容导出为 PDF,当用户单击导出按钮时会下载 PDF。我希望少数 div 的内容不导出/显示在 PDF 中,但应显示在网页上。我已将 ng-if="!isE
我有一个标记按钮,当用户点击它时,标记讨论,然后标记按钮被替换为文本“成功标记”。目前,我在单击标记按钮后无法禁用 ng-click 时遇到了问题。 ng-click 对于文本“已成功标记”仍然存在,
我在 Angular 1.4.7 中有这段代码: console.log('press') 不会在按下任何键时触发。我也尝试使用 keyup 和 keydown,但它们也不起作用。 我知道一个元素需
正如标题中提到的,我不知道如何使用 ng-bind-html 在部分内部呈现 html。 这里有一个 plunker 来说明。 http://plnkr.co/edit/YFfHsahcum7XA8G
将 ng-bootstrap 安装到我的 Angular-CLI(11.0.4) 时出现错误。 什么时候 ng add @ng-bootstrap/ng-bootstrap 还有我的日志文件 [err
我想从另一个 ng-controller 访问 ng-model,这可能吗?如何实现?在下面的代码中,我使用两个 Controller ,第一个 Controller 具有 mddl1,另一个 Con
在我的应用程序中,当我对文章进行 ng-repeat 时,用户单击“我想隐藏并显示一些元素”。为此,我使用的是 videoPlaying[$index],它对于所有具有 ng-hide 的元素都可以正
预信息 我尝试将管理员和客户分开在不同的阶段或 View 中。 这样,管理员可以在将表发布给客户之前对其进行修改。 问题在表格 -> td 中有按钮来控制暂存、释放(显示)或恢复(隐藏)? 所以基本上
这个问题在这里已经有了答案: What are the nuances of scope prototypal / prototypical inheritance in AngularJS? (3
我有以下奇怪的情况 - Controller 片段 - $scope.filterNum = {0: 'filterVal1', 1: 'filterVal2', 2: 'filterVal3', 3
AngularJS 版本:1.3.8 JSFiddle: http://jsfiddle.net/uYFE9/4/ 我一直在开发一个小的 AngularJS 应用程序,遇到了一些问题。我在页面上有一个
我有一个范围对象,其中包含具有 3 个不同图像的对象。我在 div 内显示图像,该图像重复直到范围对象的长度。我有 3 个不同的 img 标签,它们具有 ng-if 属性,并且仅一次显示 3 个图像之
在 AngularJs 中没有提供 ng-enabled 指令。是否有任何适当的理由不在框架中提供该指令,因为当您可以使用 ng- 时,我们同时拥有 ng-show 和 ng-hide隐藏来实现我们的
我是一名优秀的程序员,十分优秀!