fix (接口自动化): csv encoding 增加 GB2312 (#5933)

Co-authored-by: fit2-zhao <yong.zhao@fit2cloud.com>
This commit is contained in:
metersphere-bot 2021-09-03 14:54:34 +08:00 committed by GitHub
parent 7f98018783
commit 86bd5f5de4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@
}, },
querySearch(queryString, cb) { querySearch(queryString, cb) {
let restaurants = [{value: "UTF-8"}, {value: "UTF-16"}, {value: "ISO-8859-15"}, {value: "US-ASCll"}]; let restaurants = [{value: "UTF-8"}, {value: "UTF-16"},{value: "GB2312"}, {value: "ISO-8859-15"}, {value: "US-ASCll"}];
let results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants; let results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants;
// callback // callback
cb(results); cb(results);