Hola, tenemos la respuesta a tu interrogante, has scroll y la verás más abajo.
Ejemplo 1: se esperaban 1 argumentos posicionales pero se dieron 2
#Happens when a function expects only 1 value to be passed through it
#But multiple are passed through
class thing(object):
def __init__(self):
pass
def function(self)print("hello")
thingy =thing()
thingy.bind("" , thingy.function)
#You don't expect above to pass two values through, however it passes an event
#and self which is why it will give a positional argument error
Ejemplo 2: Esperaba 1 argumentos, pero obtuvo 0.
(click)="myFunc(i)"//Index needs to be passed when button is inside *ngFor
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)