我有以下从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"}}
为什么会这样?我在PHP中看到字符串很好并且可以,但是在传输到Vue时却不行
答案 0 :(得分:0)
您可以使用raw filter。
正如Darkbee指出的那样,您也缺少引号。例如:
$scope.urlString = "data:application/pdf;base64,"+encodeURI($scope.PdfString);
var ref = cordova.InAppBrowser.open($scope.urlString, '_blank', 'toolbarposition=bottom');