為什麼這篇angular中文鄉民發文收入到精華區:因為在angular中文這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者sthermit ( )看板Ajax標題[問題] angular bind 中文出現亂碼時間W...
各位好,最近使用angularJS在學習開發Web頁面
今天一直卡在中文會出現亂碼
google一下跟找到的JS引起的錯誤好像不太一樣
方法都試過了,無法解決
不知道問題在哪裡,只好上來請教各位
使用eclipse
-------------------------------------------------------------
index.html
<!DOCTYPE html>
<html ng-app="MainApp">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head>
</head>
<body>
<div ng-controller="MainCtrl as ctrl">
{{ctrl.test}}
</div>
</body>
<script
src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular.js" >
</script>
<script type="text/javascript" charset="UTF-8" src="app.js" ></script>
</html
------------------------------------------------------------------
在app.js
angular.module('MainApp',[])
.controller('MainCtrl',[function(){
var self=this;
self.test="中文字";
}]);
-----------------------------------------------------------------
結果會出現
ä¸- æ–‡å- —
有點像 ISO 8591-1
可是不太對
不知道應該怎麼辦
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 211.22.92.217
※ 文章網址: https://www.ptt.cc/bbs/Ajax/M.1433920566.A.68E.html
有試過把META拔掉,結果一樣
都確認過,都是utf-8沒錯
其實之後一直重新啟動SERVER之後,他又突然顯示中文了
完全不知道是什麼原因
※ 編輯: sthermit (211.22.92.217), 06/11/2015 15:10:34