這是我的JSON:無法從JSON閱讀角功能
"review": {
{
"message_bar_text": "Please carefully review your transaction details. To make any changes after confirmation, please call <a ng-click=\"callCSC(number)\">1-800-325-6000</a>.
}
}
我在這裏讀JSON綁定HTML:
WUAPI.getTranslateContent = function() {
$timeout(function() {
$http.get("translate/en_US.json").then(
function (response) {
$rootScope.getDefaultLocale = response.data;
},
function (error) {
console.log(error);
})
});
};
,但我無法綁定NG-點擊元素轉換爲HTML。當我看到Html時,角標籤被完全刪除。
我正在使用ng-bind-html來讀取html標籤(它工作正常),但我無法讀取角標籤。請建議我解決方案
查看您的JSON。它有語法錯誤。 – Siguza
有一個錯字考慮這個JSON { 「檢討」:{ 「message_bar_text」:「請仔細查看您的交易細節進行確認後,任何更改,請致電1-800-325-6000 } 。} –
仍然缺乏一個'」'。 – Siguza