我的应用程序是用 Typescript 在 Angular 7 中构建的。
我在打字稿文件中有以下代码。
this.confirmationDialogService.confirm(null, 'er du sikker på, at du vil gøre denne ændring', "Acceptere", "Afvise")
但是,当我发布它时,字符串没有在浏览器中正确编码和呈现。
this.confirmationDialogService.confirm(null, 'er du sikker p�, at du vil g�re denne �ndring', "Acceptere", "Afvise")
tsconfig.json
{
"compileOnSave": false,
"include": [
"./src", "manager/IocDataMapperModule.cs", "../TV2.DataLayer/IUserSkillDataLayer.cs", "../TV2.DataLayer.Mongo/UserSkillDataLayer.cs"
],
"compilerOptions": {
"baseUrl": "./",
"importHelpers": true,
"outDir": "./scripts/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"charset": "utf8",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
]
}
}