我正在使用聚合物2而我正在使用mixin进行行为。在我的行为子类中,我无法使用同一个子类的方法。我怎样才能做到这一点? 这是我的代码:
const Generic = (subclass) => class extends subclass
{
constructor ()
{
super();
}
_arrayIntersect (a, b)
{
let bigArray = a.length > b.length ? a : b, common = [];
bigArray.forEach(function (elm) {
if(a.indexOf(elm) !== -1 && b.indexOf(elm) !== -1)
{
common.push(elm);
}
});
return common;
}
_inArray (needle, haystack)
{
let length = haystack.length;
for(let i = 0; i < length; i++)
{
if(haystack[i] === needle) return true;
}
return false;
}
bodyClick ()
{
el.addEventListener('click', function(e) {
// How to use `_arrayIntersect` and `_inArray` from here
// this._inArray(needle, haystack) getting undefined message
});
}
};