Polymer 1从深子属性更改路径获取元素

时间:2016-03-21 03:53:35

标签: javascript polymer polymer-1.0 observers

所以来自以下文档https://www.polymer-project.org/1.0/docs/devguide/properties.html#deep-sub-property-changes-on-array-items

我制作了以下代码:

            properties:{
                skills:{
                    type:Array,
                    notify: true,
                    value: [
                        {
                          id:1,
                          name:"UNOOOOOO",
                          description: "aaa a a aa a aaaa adicionales con el fin de exceder sus expectativas y "+
                          "mejorar su calidad de vida. La orientación al "+
                          "cliente es una actitud permanente  que caracteriza a la persona."
                        },
                        {
                          id:2,
                          name:"Capacidad para plantear identificar y resolver problemas",
                          description: "aaa a a aa a aaaa adicionales con el fin de exceder sus expectativas y "+
                          "mejorar su calidad de vida. La orientación al "+
                          "cliente es una actitud permanente  que caracteriza a la persona."
                        }
                    ]
                }
            },
            observers: [
                'skillIsSelectedChanged(skills.*)'
            ],
            skillIsSelectedChanged: function(changeRecord){
                console.log(changeRecord);
            }

我可以通过数据绑定更新获得回调。 :d

Object {path: "skills.#0.isSelected", value: true, base: Array[2]}

我的问题是:是否有任何干净的方法来获取#0引用的对象的'id'?

我的意思是我可以做一些事情来分析字符串并获得'0'然后将其转换为整数然后得到像这样的对象id:

this.skills[varWith0].id

但这并不是一种正确的清洁方式。我也觉得这是常见的事情。

那么有没有干净的方法呢?

谢谢

2 个答案:

答案 0 :(得分:1)

元素原型上有get方法,可用于按路径检索值。因此,如果您有路径,则可以检索该值。

if (changeRecord.path.indexOf('.isSelected') >= 0) {
  var itemPath = changeRecord.path.replace('.isSelected', '');
  var item = this.get(itemPath);
}

知道您可以将路径作为路径或路径段的数组传递也很方便,所以您也可以这样做:

var parts = changeRecord.path.split('.');
var last = parts.pop();
if (/* last is something interesting */) {
  var item = this.get(parts);
}

如果您想确保数据绑定和观察者更新,您还需要使用this.pushthis.splice来更新responseSkills数组,因此最终代码可能会显示类似的东西:

if (changeRecord.path.indexOf('.isSelected') >= 0) {
  var itemPath = changeRecord.path.replace('.isSelected', '.id');
  var id = this.get(itemPath);
  if (changeRecord.value) {
    this.push('responseSkills', id);
  } else {
    for (var i=0; i<this.responseSkills.length; i++) {
      if (this.responseSkills[i] == id) {
        this.splice('responseSkills', i, 1);
        break;
      }
    }
  }
}

答案 1 :(得分:0)

好的..我决定编写自己的代码来解决问题。就像我说的那样,我认为应该有一些标准的做法。尽管如此,这也有效。

            skillIsSelectedChanged: function(changeRecord){
                //primero tenemos que obtener la posicion del skill que cambio.
                //path nos da un string asi: skills.#0.isSelected donde el 0 despues del # es la posicion.
                //por otro lado cuando se cargan los elementos inicialmente tambien llama este callback
                //pero con un string en path asi: skills

                //primero hacemos split en #.
                var arr = changeRecord.path.split("#");

                //luego si el length del arreglo es mayor a 1 estamos en el caso que nos interesa.
                if(arr.length > 1){
                    //como desconocemos el largo del numero, le volvemos e hacer un split al arr[1] en '.'
                    //de ese segundo arreglo resultante, la posicion 0 es el numero deseado. Ese lo convertimos en int
                    var arr2 = arr[1].split(".");
                    var position = parseInt(arr2);

                    //finalmente buscamos en skills el id del objeto en la posicion obtenida
                    var id = this.skills[position].id;

                    //lo metemos en el arreglo de respuesta
                    this.responseSkills.push(id);
                }
            }

我知道这些评论是西班牙语(对不起),但对于那些不懂西班牙语的人来说,代码非常简单。希望它有所帮助