如何显示API JSON数组中的图像?

时间:2015-11-17 13:02:44

标签: json api titanium titanium-alloy

如何显示通过我的API接收的JSON子阵列中的图像? 我可以显示标题,价格和描述,但不能显示实际图像。 谁能给我一个提示?

我的XML: Screenshot of my xml

我的JSON结构: Screenshot of my JSON structure

2 个答案:

答案 0 :(得分:1)

如果您只需要显示一张图片,请使用dataTransform属性,您也可以使用dataCollection属性(请参阅https://appcelerator.github.io/appc-docs/latest/#!/guide/Alloy_Data_Binding-section-36739592_AlloyDataBinding-Collection-ViewBinding)从JSON中选择/撰写图像URI然后使用<ImageView image="{myImage}" />

中的属性

答案 1 :(得分:0)

您需要遍历图像数组并在JS中创建ImageView。要显示图像,您可以使用ScrollableView(http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.ScrollableView)并将图像添加为视图。