标签: messageformat
我在javascript中使用了MessageFormat.format,如果我传递字符串test's,我将以the test's的身份返回
test's
the test's
MessageFormat.format(`this is {myStr}`, {"myStr":"test's"})
如何获取最终字符串为this is test's
this is test's