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\\ の文字列ユーティリティは \"良い\" です
アポストロフィに二重のバックスラッシュを追加するのに対し、逆コンマに単一のバックスラッシュを追加する理由.
最終的に何が起こるかは、次のように表示された文字列を表示したときです。
これを修正するには?
あなたはこれを試すことができます:
Ext.String.escape('Sencha\'s string utility is "good"').replace(/\\/,''); // Output: Sencha's string utility is "good"