我注意到,根据使用的特定HTML元素控件,土耳其字符的保存方式有所不同(对于textarea
正确,对于input
错误)。
我正在使用以下字符进行测试:ÖŞĞÜİÇöşğüıç
下面是我的input
和textarea
控件的HTML(没什么花哨的):
<div class="col-md-12">
<div class="row defMarginBottom">
<div class="col-md-6">
<label>Mesaj Konusu</label>
<input type="text" class="form-control" placeholder="Konu"
ng-model="titleText" />
</div>
</div>
<div class="row defMarginBottom">
<div class="col-md-3">
<label>İnternet Adresi Konusu</label>
<input type="text" class="form-control"
placeholder="İnternet Adresi Konusu"
ng-model="additionalDataSubject" />
</div>
<div class="col-md-3 defMarginLeft1_3">
<label>İnternet Adresi Linki</label>
<input type="text" class="form-control"
placeholder="İnternet Adresi Linki"
ng-model="additionalDataLink" />
</div>
</div>
<div class="row defMarginBottom">
<div class="col-md-6">
<label>Mesaj</label>
<textarea class="form-control defHeight"
placeholder="Mesaj" ng-model="message">
</textarea>
</div>
</div>
<div class="row">
<input style="margin-left:1.5%;" type="button"
class="btn btn-success" value="Kaydet ve Gönder"
ng-click="saveAndSend()" />
</div>
</div>
以下是定义ng模型的Angular Controller代码:
var jsonObj = {
"Subject": $scope.additionalDataSubject,
"Link": $scope.additionalDataLink
};
var obj = {
"ActivityTypeIds": activityTypeIdList,
"SalesPersonID": $scope.salesPersonId,
"SalesPersons": $scope.spIdList,
"CustomerCategories": categoryIdList,
"customerName": $scope.customerName,
"StartDate": $scope.startDate,
"EndDate": $scope.endDate,
"TitleText": $scope.titleText,
"Message": $scope.message,
"AdditionalData": JSON.stringify(jsonObj)
};
当我输入测试字符串时,只有textarea
控件的字符串才被正确保存到数据库中。
用于input
控件的控件被错误地保存为:ÖŞĞÜİÇ öşğüıç
注意:我最近将以下新指令添加到了我的Angular应用中,作为保护性XSS攻击,并怀疑它会引起问题,但是由于textarea
的条目已正确保存,因此不确定是否相关。
.directive('input',['$sanitize', function ($sanitize) {
return {
restrict: 'E',
require: '?ngModel',
link: function (scope, element, attrs, ngModel) {
if (ngModel !== undefined && ngModel != null) {
ngModel.$parsers.push(function (value) {
return $sanitize(value);
});
}
}
};
}]);
我该如何克服这个问题?关于SO的大多数问题都与土耳其字符的渲染有关,而不是与保存它们有关。