有時候咱們可能須要在其餘的網頁上展現咱們本身的小程序中某些頁面的小程序碼,這種時候,咱們須要用到小程序的生成小程序碼的相關接口。
工具選型
項目配置
生成小程序碼的相關類型
- 小程序碼的其餘生成方式以及相關類型在這篇文章點此進入中介紹的較爲詳細,此處再也不贅述,如下僅以生成不限制張數的這種類型來作一個示例。
生成小程序碼圖片
- 先獲取小程序的service實例wxMaService。
- 再獲取二維碼相關操做的service實例
// 獲取小程序服務實例
WxMaService wxMaService = WxMaConfiguration.getWxMaService();
// 獲取小程序二維碼生成實例
WxMaQrcodeService wxMaQrcodeService = wxMaService.getQrcodeService();
// 設置小程序二維碼線條顏色爲黑色
WxMaCodeLineColor lineColor = new WxMaCodeLineColor("0", "0", "0");
// 生成二維碼圖片字節流(此處也能夠生成File類型,若是想將圖片文件保存到服務器就生成File類型,此處生成byte[]類型,方便直接返回文件流到前端)
byte[] qrCodeBytes = null;
qrCodeBytes = wxMaQrcodeService.createWxaCodeUnlimitBytes(String.valueOf(id), null, 430, false, lineColor, false);
返回文件流
- 將文件流寫到response中,相關示例代碼以下:
@RestController
@RequestMapping("/qrCode")
public class QrCodeController {
private static final Logger logger = LoggerFactory.getLogger(QrCodeController.class);
@GetMapping("/getMiniappQrCode/{id}")
public void getMiniappQrCode(@PathVariable("id") Long id, HttpServletRequest request, HttpServletResponse response) throws Exception{
// 獲取小程序服務實例
WxMaService wxMaService = WxMaConfiguration.getWxMaService();
// 獲取小程序二維碼生成實例
WxMaQrcodeService wxMaQrcodeService = wxMaService.getQrcodeService();
// 設置小程序二維碼線條顏色爲黑色
WxMaCodeLineColor lineColor = new WxMaCodeLineColor("0", "0", "0");
// 生成二維碼圖片字節流
byte[] qrCodeBytes = null;
try{
qrCodeBytes = wxMaQrcodeService.createWxaCodeUnlimitBytes(String.valueOf(id), null, 430, false, lineColor, false);
} catch(Exception e){
logger.error("生成小程序碼出錯", e);
}
// 設置contentType
response.setContentType("image/png");
// 寫入response的輸出流中
OutputStream stream = response.getOutputStream();
stream.write(qrCodeBytes);
stream.flush();
stream.close();
}
}
Diboot - 簡單高效的輕代碼開發框架前端