11
This commit is contained in:
@@ -172,7 +172,7 @@ class KeywordMatcher {
|
||||
if (filterKeywords.length > 0 && !filterResult.matched) {
|
||||
return {
|
||||
pass: false,
|
||||
reason: '不包含任何必需关键词',
|
||||
reason: `未命中包含关键词: ${filterKeywords.join(', ')}`,
|
||||
score: 0,
|
||||
details: { filter: filterResult }
|
||||
};
|
||||
@@ -204,7 +204,7 @@ class KeywordMatcher {
|
||||
return [];
|
||||
}
|
||||
|
||||
const textExtractor=(job) => `${job.jobTitle || ''} ${job.companyIndustry || ''}`;
|
||||
const textExtractor=(job) => `${job.jobTitle || ''}`;
|
||||
|
||||
const filtered = [];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user