我一直在尝试将一个简单的 url(字符串)绑定到 svg 元素内的图像标签。
但我收到以下错误:TypeError: Cannot read property 'split' of null
浏览器中没有显示图片。
图像和绑定工作正常,在普通<img>
标签内或在<image/>
元素中硬编码时没有错误。
SVG 示例:
import { LitElement, svg } from 'lit-element';
class AppDevice extends LitElement {
static get properties() {
return {
selectedImage: {
type: String
}
};
}
constructor() {
super();
this.selectedImage = 'https://mdn.mozillademos.org/files/6457/mdn_logo_only_color.png';
}
render() {
return svg`
<svg width="600px" height="600px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<image xlink:href="${this.selectedImage}" id="canvas" x="176.32" y="145.932" width="252.068" height="252.068"/>
<!-- Works -->
<!-- <image xlink:href="https://mdn.mozillademos.org/files/6457/mdn_logo_only_color.png" id="canvas" x="176.32" y="145.932" width="252.068" height="252.068"/> -->
</svg>
`;
}
}
解决方法示例:
在阅读了这个问题的评论中指出的 github 上的讨论后,我更新了我的答案:
const namespaced = directive((namespace, value) => (part) => {
part.committer.element.setAttributeNS(namespace, part.committer.name, value);
});
const xlinkNamespace = 'https://mdn.mozillademos.org/files/6457/mdn_logo_only_color.png';
import { LitElement, html } from 'lit-element';
class AppDevice extends LitElement {
static get properties() {
return {
};
}
constructor() {
super();
}
render() {
return html`
<svg width="600px" height="600px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<image xlink:href="${namespaced(xlinkNamespace, 'something')}" id="canvas" x="176.32" y="145.932" width="252.068" height="252.068"/>
</svg>
`;
}
}