- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个数组,我从中获取一些值来创建表单的一些字段。创建后,我需要将自动填充的新数组发送到服务器。问题是我需要从第一个开始发送相同的数组,但当然要发送新值。我在这里创建了示例:
https://jsfiddle.net/vuqcopm7/2/
这里有一些代码:
HTML:
<div ng-app='myApp' ng-controller='mycontroller'>
<div data-ng-repeat="item in myNewArray.newArray track by $index">
<div ng-if="item.attrType == 'text'">
<input id="form-f{{$index}}" type="text" placeholder="{{item.attrname}}" data-ng-model="item.attrValue"/>
</div>
</div>
<div data-ng-repeat="object in getItems.data">
<div data-ng-repeat="att in object.objects">
<ul ng-repeat="data in att.attributes">
<li>
<a ng-click="pushItems(att.name, data)">{{data.attrname}}</a>
</li>
</ul>
</div>
</div>
<p>{{showNewJson()}}</p>
</div>
JS:
var myApp = angular.module('myApp',[]);
myApp.controller("mycontroller", ["$scope", "$http",
function($scope, $http){
$scope.getItems = {
"data": [
{
"label": "first",
"objects": [
{
"name": "firstObj",
"attributes": [
{
"attrname": "asd1",
"attrValue": "",
"attrType":"text"
},
{
"attrname": "asd2",
"attrValue": "",
"attrType":"text"
}
]
}
],
"key": "bolla"
},
{
"label": "second",
"objects": [
{
"name": "secondObj",
"attributes": [
{
"attrname": "asd",
"attrValue": "",
"attrType":"text"
},
{
"attrname": "asd3",
"attrValue": "",
"attrType":"text"
}
]
}
],
"key": "2"
}
]
};
$scope.filterSelected = $scope.getItems.data[0].objects;
$scope.myNewArray = {
newArray: [
]
}
$scope.pushItems = function pushItems(attribute, items) {
$scope.myNewArray.newArray.push(angular.copy(attribute), angular.copy(items));
console.log($scope.myNewArray);
}
$scope.showNewJson = function() {
return $scope.myNewArray;
}
}]);
ps:我使用的是 angularjs
编辑:我更新了 fiddle :https://jsfiddle.net/vuqcopm7/3/
这应该是我想要的正确的 json:
{
"objects": [
{
"name": "firstObj",
"attributes": [
{
"attrname": "asd1",
"attrValue": "asdas",
"attrType": "text"
},
{
"attrname": "asd2",
"attrValue": "sadsa",
"attrType": "text"
},
{
"name": "secondObj",
"attributes": [
{
"attrname": "asd3",
"attrValue": "tttt",
"attrType": "text"
},
{
"attrname": "asd4",
"attrValue": "qqq",
"attrType": "text"
}
]
}
]
}
]
}
最佳答案
这是我的最终答案 - https://jsfiddle.net/vuqcopm7/8/
$scope.myNewArray = {
objects: [
]
}
$scope.createjson = function(attribute, items) {
var obj = {};
obj.name = angular.copy(attribute);
obj.attributes = [];
obj.attributes.push(angular.copy(items));
return obj;
}
$scope.checkIfAttributeExists = function(attribute) {
for(var i=0; i<$scope.myNewArray.objects.length; i++) {
if($scope.myNewArray.objects[i]["name"] == attribute) {
return i;
}
}
return -1;
}
$scope.pushItems = function pushItems(attribute, items) {
var index = $scope.checkIfAttributeExists(attribute);
if(index == -1) {
var obj = $scope.createjson(attribute, items);
$scope.myNewArray.objects.push(obj);
}
else {
$scope.myNewArray.objects[index].attributes.push(items);
}
//console.log($scope.myNewArray);
}
$scope.showNewJson = function() {
return $scope.myNewArray;
}
关于javascript - 从新数组重新创建相同的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29965025/
新的媒体管理器看起来很棒,非常好,但是,在以前的版本中,它在附件详细信息中有几个字段我想避免使用,我曾经使用以下代码: add_filter('attachment_fields_to_edit',
当您使用 IDE 构造函数(new->activity)创建新 Activity 时 - 在 Android Studio 和 Eclipse 中 - 它会创建新的 java 文件、布局文件、添加 A
我使用了 PDF 渲染问题中的代码 How to render PDF in Android 而且有效!回答者的 Prop ,但我的问题是关于做同样的事情,但也发送关键字以在 pdf 中搜索。我不知道
我试图让用户能够循环浏览视频,即时更改 AVPlayer URL 而无需刷新 View 。但是,现在我只是在每次播放视频时实例化 AVPlayer 对象(导致音频相互播放),我觉得这不是最好的方法。有
当您向 ASP.NET MVC 项目添加新 View 时,您可以通过在对话框中选择它应该使用的模型类来强类型化 View 。问题在于该下拉菜单中包含所有引用项目和 dll 中的所有类和接口(inter
简而言之: 从新 git 存储库 上的远程分支 pull 代码后,我能否将代码重置为执行 git pull 之前的状态? 长话短说: 我有两个包含脚本的文件夹,一个文件夹代表另一个文件夹中文件的另一个
如何导出 ARMeshGeometry新生成的SceneReconstruction最新 iPad Pro 上的 API .obj文件? 这是SceneReconstruction文档。 最佳答案 从
我是一名优秀的程序员,十分优秀!