1
我正在開發一個項目,在那裏我嘗試使用API(我正在使用Quotesondesign)構建一個隨機引用機器。代碼我似乎沒問題,但我在輸出中遇到了無法識別的符號。不知道它來自哪裏。輸出中無法識別的字符
所以我的問題:是我的代碼有問題還是API問題?
我的HTML是:
<div class="container-fluid row text-center">
<div class="col-xs-12 well message">
Your quote
</div>
<div class="col-xs-12">
<button id="getMessage" class="btn btn-primary">
Get Quote
</button>
</div>
</div>
我的JS是:
$(document).ready(function() {
var url = "http://quotesondesign.com/wp-json/posts?filter[orderby]=rand&filter[posts_per_page]=1";
$("#getMessage").on("click", function() {
$.getJSON(url, function(json) {
$(".message").html(JSON.stringify(json[0].content + json[0].title));
});
});
});
什麼我得到的樣子
"
If you never want to be criticized, for goodness’ sake don’t do anything new.
\nJeff Bezos"
這些「和\ n不應該在這裏
你說的輸出無法識別的符號是什麼意思?只有一些字符編碼錯誤或者是整個輸出亂碼?你可以發佈一些嗎? –
@HubertGrzeskowiak對不起,剛更新我的問題,例如 –
是'json [0] .content'和'json [0] .title'字符串嗎? – Arnial