apicloud 使用trans模块将base64 字符串保存为图片并显示到页面上

var trans = api.require('trans');// 引入apicloud提供的trans模块
trans.saveImage({
    base64Str: 'base64字符串',
    imgPath:"fs://img/",// 图片路径
    imgName:"parentid_code.png"// 图片名字
}, function(ret, err) {
    if (ret.status) {
        console.log('转换:' + JSON.stringify(ret));
        // 拼接图片路径
        var imgN =  api.fsDir + '/'+'img'+'/'+'parentid_code.png';
        // 显示图片到页面上
        $("#qrcodeId").attr("src",imgN);
    } else {
        console.log(JSON.stringify(err));
    }
});

你可能感兴趣的:(apicloud 使用trans模块将base64 字符串保存为图片并显示到页面上)