laravel-emoji icon indicating copy to clipboard operation
laravel-emoji copied to clipboard

接口输出字符转换问题

Open anyforever opened this issue 4 years ago • 0 comments

从数据库取出来之后,将shortname转为了Unicode,但是接口return之后,显示出来的就是"name": "Apple😜",这种形式了,在浏览器里能自动转成emoji表情,在小程序里就不行了。如何直接还是😜呢?

return response()->json(['code' => 0, 'message' => 'ok', 'data' => $data]);

{
  "code": 0,
  "message": "ok",
  "data": {
    "user": {
      "name": "Apple😜",
      "avatar": ""
    },
   ]
  }
}

anyforever avatar Jul 25 '20 01:07 anyforever