Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于如下字符串:
Sencha 的字符串实用程序是“好”的
Ext.String.escape 会将其转换为以下内容:
Sencha\\ 的字符串实用程序是 \"good\"
为什么它在撇号上添加双反斜杠与在倒逗号上添加单反斜杠。
最终发生的是当我显示它显示的字符串时:
Sencha\ 的字符串实用程序是“好”的
如何解决这个问题?
你可以试试这个:
Ext.String.escape('Sencha\'s string utility is "good"').replace(/\\/,''); // Output: Sencha's string utility is "good"