我使用Latin1在数据库(sql server)中保存数据。我的html应用程序使用utf-8编码。
使用WebApi在c#中编写服务器端。
当我尝试从包含txt文件中包含单词“123”的db下载文件时:
$http.get<string>(url).success(data=> console.log(data);
我明白了: 123 使用后
unescape(encodeURIComponent('�123'));
我得到“�123”
如何将返回的字符串从服务器转换为正确的字符串?