# Fetch Json without "Names"

**URL:** https://forums.fusetools.com/t/fetch-json-without-names/3160
**Category:** How-to Discussions
**Created:** [October 22, 2016, 5:44am UTC](https://forums.fusetools.com/t/fetch-json-without-names/3160 "2016-10-22T05:44:48Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![dszymczak84](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/dszymczak84/32/418_2.png) [@dszymczak84](https://forums.fusetools.com/u/dszymczak84)
#### Post date: [October 22, 2016, 5:44am UTC](https://forums.fusetools.com/t/fetch-json-without-names/3160/1 "2016-10-22T05:44:48Z")

</div>

Hi, i try to " \< Each \> " json array, but this json array don`t have a “names”, just values (example below)

```auto
[
    "data1",
    "data2",
    "data3",
    "data4"
]

```

Any example how to do it with this type of Json ?

---

<div class="post-metadata">

### Author: ![Anders\_Lassen](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/anders_lassen/32/522_2.png) [@Anders\_Lassen](https://forums.fusetools.com/u/Anders_Lassen)
#### Post date: [October 22, 2016, 7:22am UTC](https://forums.fusetools.com/t/fetch-json-without-names/3160/2 "2016-10-22T07:22:20Z")

</div>

Hi,

This should just work. An `<Each Items="{}">` will pick each item from the array.

---

<div class="post-metadata">

### Author: ![dszymczak84](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/dszymczak84/32/418_2.png) [@dszymczak84](https://forums.fusetools.com/u/dszymczak84)
#### Post date: [October 22, 2016, 10:34am UTC](https://forums.fusetools.com/t/fetch-json-without-names/3160/3 "2016-10-22T10:34:04Z")

</div>

I have this :

```auto
<Each Items="{data}">
	<Text Value="{}" />
</Each>

```

and it says :

```auto
Fuse.Scripting.ArrayMirror 

```

---

<div class="post-metadata">

### Author: ![Remi\_Pedersen](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/remi_pedersen/32/432_2.png) [@Remi\_Pedersen](https://forums.fusetools.com/u/Remi_Pedersen)
#### Post date: [October 24, 2016, 9:59am UTC](https://forums.fusetools.com/t/fetch-json-without-names/3160/4 "2016-10-24T09:59:15Z")

</div>

This works just fine (Fuse v0.27.1):

```auto
<App>
	<JavaScript>
		exports.data = [
		"data1",
		"data2",
		"data3",
		"data4"
		];
	</JavaScript>
	<StackPanel>
		<Each Items="{data}">
			<Text Value="{}" />
		</Each>
	</StackPanel>
</App>

```
