vue显示微信用户名称中enjoin表情
Posted 。思索
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue显示微信用户名称中enjoin表情相关的知识,希望对你有一定的参考价值。
后端做了处理转为了Unicode编码存入数据库,但是取出来没做出来,所以前端就做下简单的处理
转换代码:
function decodeUnicode(str) { str = str.replace(/\/g, "%"); return unescape(str); };
computed下的代码:
因为要针对数组中的某一元素进行排序,所以先排序,然后再次对这个数组中的用户名称进行转换
computed: {
draw_usinfo: function() { return sortKey(this.code_result, ‘times‘) }, draw_user: function() { for(var i=0;i<this.draw_usinfo.length;i++){ this.draw_usinfo[i][‘username‘] = decodeUnicode(this.draw_usinfo[i].username); } return this.draw_usinfo; } },
以上是关于vue显示微信用户名称中enjoin表情的主要内容,如果未能解决你的问题,请参考以下文章