Vue JSON.parse 因为空间而失败?



我有以下从PHP获得的json_encoded返回值

{"data":{"format":"d/m/Y H:i:s"}}

我像这样将其传递给我的 Vue 应用程序:

<component data={{ object.toJson() }}></component>

但是,这会像这样转移到 Vue:

{"data":{"format":"d/m/Y" h:i:s&quot;}}

为什么会这样?我看到字符串在 PHP 中很好,但当它传输到 Vue 时就不行

您可以使用原始过滤器。

正如Darkbee指出的那样,你也缺少引号。 例如:

<component data="{{ object.toJson()|raw }}"></component>

相关内容

  • 没有找到相关文章

最新更新