错误是离子无效图像,图像字典应包含dataURL条目,如何解决此错误。
var docDefinition = {
content: [
{ text: 'Dr. ' + this.letterObj.From, style: 'header' },
{ text: new Date().toLocaleString(), alignment: 'center' },
{ text: this.dloc, alignment:'center'},
// { text: 'TEL: (631) 22431243 FAX:(631) 1325423', alignment: 'center'},
{ text: '__________________________________________________________', alignment: 'center'},
{ text: 'Name:', style: 'subheader' },
this.full,
{text: 'Rx', style: 'rx'},
// { text: 'From', style: 'subheader' },
// { text: this.letterObj.From },
{ image: '..assets/imgs/rx.png', width:100},
{ text:this.letterObj.text, style: 'story', margin:[0,20,0,20] },
{
}
]
答案 0 :(得分:0)
您的图像路径image: '..assets/imgs/rx.png'
无效。
当图像属性是文件的路径时,如果该路径无效,则会出现此错误。
首先,尝试使用以下路径:image: '../assets/imgs/rx.png'
然后,如果仍然无法正常工作,请验证解析器是否正确解析了相对路径。