I am playing with Pyscript for the first time and I am trying to create a DOM element for each element in an array, similar to the *ngFor directive in Angular. Is there any way to achieve this?
JavaScript
x
10
10
1
<body>
2
<div id="test"></div>
3
<py-script>
4
dataSet = [1,2,3,4]
5
6
for i,x in enumerate(dataSet):
7
pyscript.write("test", x)
8
</py-script>
9
</body>
10
Advertisement
Answer
I am trying to create a DOM element for each element in an array
To append a new DOM element, use the append=True
parameter
JavaScript
1
2
1
pyscript.write("test", x, append=True)
2
The signature for pyscript.write
JavaScript
1
3
1
@staticmethod
2
def write(element_id, value, append=False, exec_id=0):
3
Source for pyscript.write
link