Can a json string contain HTML tags with it?

后端 未结 4 1350
别跟我提以往
别跟我提以往 2020-12-30 10:41

Consider this my json string,

[{
  \"Mat_id\": \"2\",
  \"Mat_Name\": \"Steel\",
  \"Measurement\": \"mm\",
  \"Description\": \"Steel\"
}]

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-30 11:43

    use Encoder.js from http://code.google.com/p/jsool/source/browse/jsool-site/js/util/Encoder.js?r=176

    when getting data use

    Encoder.htmlDecode(value);

    and when passing data use

    Encoder.htmlDecode(value);

提交回复
热议问题