Vue JSON.parse由于空间原因而失败?

时间:2018-09-26 09:17:05

标签: vue.js twig

我有以下从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时却不行

1 个答案:

答案 0 :(得分:0)

您可以使用raw filter

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

$scope.urlString = "data:application/pdf;base64,"+encodeURI($scope.PdfString);
var ref = cordova.InAppBrowser.open($scope.urlString, '_blank',  'toolbarposition=bottom');