如何显示我的 API JSON 数组中的图像?
How to display images from my API JSON array?
如何显示通过 API 接收的 JSON sub-array 中的图像?
我可以显示标题、价格和描述,但不能显示实际图像。
谁能给我提示?
我的XML:
我的JSON结构:
您需要循环遍历图像数组并在 JS 中创建 ImageView。要显示图像,您可以使用 ScrollableView (http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.ScrollableView) 并将图像添加为视图。
如果您只需要显示一张图片,请使用 dataTransform
属性,其中您还具有 dataCollection
属性(参见 https://appcelerator.github.io/appc-docs/latest/#!/guide/Alloy_Data_Binding-section-36739592_AlloyDataBinding-Collection-ViewBinding)到 select/compose 图片 URI从 JSON 然后在 <ImageView image="{myImage}" />
中使用 属性
如何显示通过 API 接收的 JSON sub-array 中的图像? 我可以显示标题、价格和描述,但不能显示实际图像。 谁能给我提示?
我的XML:
我的JSON结构:
您需要循环遍历图像数组并在 JS 中创建 ImageView。要显示图像,您可以使用 ScrollableView (http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.ScrollableView) 并将图像添加为视图。
如果您只需要显示一张图片,请使用 dataTransform
属性,其中您还具有 dataCollection
属性(参见 https://appcelerator.github.io/appc-docs/latest/#!/guide/Alloy_Data_Binding-section-36739592_AlloyDataBinding-Collection-ViewBinding)到 select/compose 图片 URI从 JSON 然后在 <ImageView image="{myImage}" />