微信小程序怎么才能在页面上显示从数据库查出的图片,给出Java和微信小程序的代码
时间: 2024-06-08 21:11:54 浏览: 88
基于ssm微信小程序的商品展示系统源码数据库文档.zip
假设你的数据库中存储的是图片的 URL,那么在小程序中可以使用 `wx:for` 循环遍历图片 URL 数组,然后使用 `<image>` 标签来显示图片。以下是示例代码:
Java 代码:
```
@RestController
public class ImageController {
@Autowired
private ImageService imageService;
@GetMapping("/images")
public List<String> getAllImages() {
return imageService.getAllImageUrls();
}
}
```
微信小程序代码:
```
<view wx:for="{{imageUrls}}" wx:key="index">
<image src="{{item}}"></image>
</view>
```
其中,`imageUrls` 是从服务器端获取的图片 URL 数组。
需要注意的是,为了能够正常显示图片,需要在微信小程序的 `app.json` 文件中进行配置,具体可以参考 [官方文档](https://developers.weixin.qq.com/miniprogram/dev/framework/config.html)。
阅读全文