我有一些问题要激活qrcode 0.3插件。我已经在我的项目上安装了,以及如何获得print qrcode? p>
这是我的代码
def beforeInsert() {
Integer count = Batch.count()+1
String bc = sprintf('%04d',count)
if( packNoLevel1 != null){
number = prodDate.format('MM/dd/yy') + '/' + packNoLevel1 + '/' + item.code + '/' + bc
}else{
number = prodDate.format('MM/dd/yy') + '/' + packNoLevel2 + '/' + item.code + '/' + bc
}
以及如何生成qrcode的数字? 感谢..
答案 0 :(得分:1)
首先,您的域中有beforeInsert
个事件?如果是这样,在域内生成qr对渲染它没有帮助。您需要将该逻辑移动到控制器中或将该数字保存在数据库中,以后在需要显示qrcode时从控制器中使用它。
我假设您能够将逻辑移动到控制器中,然后您只需将该数字传递到视图中,视图将根据该数字为您呈现qrCode。
YourController.groovy
def show() {
// this logic needs be tweaked if you decide to have it in controller
//Integer count = Batch.count()+1
//String bc = sprintf('%04d',count)
// if( packNoLevel1 != null){
// number = prodDate.format('MM/dd/yy') + '/' + packNoLevel1 + '/' + item.code + '/' + bc
// }else{
// number = prodDate.format('MM/dd/yy') + '/' + packNoLevel2 + '/' + item.code + '/' + bc
// }
def number = calculateMe()
[...,qrNumber:number]
}
的list.gsp
<qrcode:image text="${qrNumber}"/>