import { Questionnaire } from '@/types'; const options = [ { id: 1, content: '非常不像我', value: '1' }, { id: 2, content: '比较不像我', value: '2' }, { id: 3, content: '不确定', value: '3' }, { id: 4, content: '比较像我', value: '4' }, { id: 5, content: '非常像我', value: '5' }, ]; export const needForCognition: Questionnaire = { id: 'need-for-cognition', title: 'Need for Cognition 认知需求量表(18题)', description: '评估一个人是否喜欢投入复杂思考和智力挑战', category: '认知', tags: ['自评'], time: '5-8分钟', evaluation: { academicRecognition: 'A', retestSuitable: true, recommendedInterval: '1年', }, details: { introduction: '认知需求量表用于评估一个人是否倾向于主动投入、享受并寻找需要思考的任务。它测量的是思考动机和偏好,不是智商或知识水平。', questionCount: '18个项目', evaluationTime: '通常为5-8分钟', instructions: '请判断每句话与平时自己的相似程度。这里没有好坏之分,高分表示更喜欢费力思考,低分表示更偏好简洁、直接或实用的处理方式。', scoringMethod: [ '每题1-5分,部分题目反向计分。', '总分范围18-90分,平均分范围1-5分,分数越高表示认知需求越高。', '该量表评估的是思考偏好,不等同于认知能力或学习成绩。', ], dimensions: [ { name: '思考投入', description: '是否愿意主动投入较复杂、较耗费心力的思考任务。', }, { name: '智力挑战偏好', description: '是否享受抽象问题、复杂问题和新解法带来的挑战。', }, ], notes: [ '认知需求高的人通常更愿意深入加工信息,但不代表一定更聪明。', '认知需求低也不等于能力差,可能只是更偏好效率、直觉或实践导向。', '建议与CRT一起理解:CRT偏能力表现,认知需求偏思考动机。', ], references: [ { text: 'Cacioppo, Petty & Kao (1984). The efficient assessment of need for cognition.', url: 'https://doi.org/10.1207/s15327752jpa4803_13', }, { text: 'Need for Cognition Scale scoring overview', url: 'https://centerofinquiry.org/uncategorized/need-for-cognition-scale-wabash-national-study/', }, ], }, questions: [ { id: 1, content: '相比简单问题,我更喜欢复杂一点的问题。' }, { id: 2, content: '我愿意负责处理需要大量思考的情况。' }, { id: 3, content: '对我来说,思考本身并不算有趣。' }, { id: 4, content: '如果可以选择,我宁愿做不太需要动脑的事。' }, { id: 5, content: '我会尽量避免需要长时间思考的任务。' }, { id: 6, content: '长时间认真推敲一个问题会让我感到满足。' }, { id: 7, content: '我通常只愿意思考到“够用”为止。' }, { id: 8, content: '相比长期复杂的问题,我更喜欢简单日常的小任务。' }, { id: 9, content: '一旦学会某件事,我更喜欢它不再需要太多思考。' }, { id: 10, content: '依靠思考和判断来解决问题这件事很吸引我。' }, { id: 11, content: '我很享受为问题想出新解法的过程。' }, { id: 12, content: '学习新的思考方式并不会让我特别兴奋。' }, { id: 13, content: '我喜欢生活里有一些需要慢慢解开的难题。' }, { id: 14, content: '抽象思考对我来说是有吸引力的。' }, { id: 15, content: '我更愿意做重要且有智力挑战的任务,而不是轻松但普通的任务。' }, { id: 16, content: '完成很费脑的任务后,我更多是松一口气,而不是满足。' }, { id: 17, content: '只要知道答案就够了,我不太在意背后的原理。' }, { id: 18, content: '深入思考会让我感到有精神。' }, ], renderOptions: () => options, };