replaceURLWithImage (text) { var a = /((https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|])/ig; this.html = text.replace(a,"<img src='$1'></img>"); console.log(this.html) }
text就是你要穿的URL,例如:
this.html 传给富文本插件 就可以了。
replaceURLWithImage (text) { var a = /((https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|])/ig; this.html = text.replace(a,"<img src='$1'></img>"); console.log(this.html) }
text就是你要穿的URL,例如:
this.html 传给富文本插件 就可以了。