礼貌比语法重要。 技术讨论中,逻辑比英语水平重要。用 could/would/may 软化语气,先肯定再反对,具体比模糊好。
面试追问地图
| 场景 | 核心原则 | 关键句式 |
|---|---|---|
| Standup | 30 秒说清三件事 | Yesterday I… / Today I plan to… / Blocked on… |
| 1:1 | 准备 3 个话题,不要只说”都挺好” | I’d like to discuss… / I’m struggling with… |
| 给反馈 | 先肯定再改进 | I really liked X. One thing that could be better is Y. |
| 提反对意见 | 对事不对人 | I see your point, but I’m concerned about… |
| 催进度 | 表示理解 + 说明原因 | I know you’re swamped, just checking in because… |
| 主持会议 | 开场 + 控时 + 总结 | Let’s get started. / We have 30 minutes. / To recap… |
一、Standup(每日站会)
模板
Yesterday I [做了什么].
Today I plan to [计划做什么].
[可选: Blocked on [阻塞项] — could use some help with that.]
示例
Yesterday I finished the retry logic for the payment service
and merged the PR. Today I'm picking up the notification
refactoring ticket. No blockers so far.
常用表达
| 说 | 意思 |
|---|---|
| I’m working on [任务]. | 正在做 |
| I wrapped up [任务]. | 做完了 |
| I’m still working on [任务]. | 还没做完 |
| I’m blocked on [问题]. | 被阻塞了 |
| I’m waiting for [某人/某事]. | 在等 |
| I’m making progress on [任务]. | 有进展 |
| I’ll pick up [任务] next. | 下一个做 |
| No blockers on my end. | 没阻塞 |
| Could use a second pair of eyes on [东西]. | 需要人帮看下 |
二、1:1(一对一)
准备框架
每次 1:1 前准备 3 个话题:
- 一个进展(show progress)
- 一个卡点(ask for help)
- 一个想法(share an idea)
模板
| 你想说的 | 英文 |
|---|---|
| 我想聊聊我的职业发展 | I’d like to talk about my career growth. |
| 我在这个项目上卡住了 | I’m a bit stuck on [项目]. Could I get your advice? |
| 我想承担更多责任 | I’d like to take on more responsibility. Is there anything I can help with? |
| 我觉得这个流程可以改进 | I think we could improve [流程]. Here’s my suggestion… |
| 我不确定优先级 | I’m not sure which of these is the priority. Can you help me sort it out? |
| 我最近压力有点大 | I’ve been feeling a bit stretched lately. Can we talk about workload? |
如何回应”你怎么看?”
| 对方问 | 你回答 |
|---|---|
| How’s it going? | Pretty good overall. [1-2 句具体进展]. |
| Anything you’re worried about? | One thing I’m keeping an eye on is [关注点]. |
| What can I do to support you? | Actually, it would help if [具体请求]. |
| Any feedback for me? | I appreciate [某件事]. One thing that might help is [建议]. |
三、Sprint Planning & Retro
Planning
| 说 | 场景 |
|---|---|
| I think this ticket is a [N] pointer. | 估点 |
| Can we break this down into smaller tasks? | 拆分任务 |
| This depends on [另一件事] being done first. | 依赖 |
| I don’t think we can fit this into the sprint. | 放不下 |
| Who’s taking [任务]? | 谁认领 |
| I can take it. | 我来做 |
Retro
| 说 | 场景 |
|---|---|
| What went well: [正面的事]. | 好的 |
| What could be better: [改进点]. | 可以改进的 |
| One thing I’d like to try next sprint is [尝试]. | 下个 sprint 想试的 |
| I think we should [建议]. What does everyone think? | 提建议 |
| Shout out to [某人] for [做了什么事]. | 感谢/表扬 |
| Let’s not forget what we did well. | 别忘了做得好的地方 |
四、给反馈
核心原则
先肯定再改进。 不要只说”这里有问题”,先说”这里做得不错”,再说”这里可以更好”。
模板
正面反馈:
I really liked [具体做法] because [为什么好].
Especially [亮点].
改进建议:
One thing that could make this even better is [建议].
[为什么建议].
What do you think?
收到负面反馈时:
Thanks for the feedback — I appreciate you being direct.
Let me [具体怎么做].
示例
给 Code Review 反馈:
Overall looks great! I really like how you handled the
error cases in the payment service.
One suggestion: the retry logic could be extracted into
a separate class so it's easier to test. What do you think?
给同事反馈:
I really appreciate how thorough your PR reviews are —
they've caught several bugs before they hit production.
One thing that would help me: if you could flag the
"must-fix" vs "nice-to-have" comments separately,
it would save me some back-and-forth. Does that work for you?
五、提反对意见
核心原则
对事不对人。 反对的是方案,不是人。用 “I’m concerned about…” 而不是 “You’re wrong.”
句式梯度(从软到硬)
| 强度 | 句式 |
|---|---|
| 1(最软) | I’m wondering if [替代方案] might work better? |
| 2 | I have a slight concern about [某个点]. |
| 3 | I see your point, but I’m worried that [后果]. |
| 4 | I’d like to challenge that assumption. What if [反例]? |
| 5(最硬) | I disagree. Here’s why: [理由]. |
示例
I see your point about using MongoDB for this use case.
The flexible schema is definitely appealing.
I'm a bit concerned about the consistency guarantees though.
Since we're dealing with payment data, eventual consistency
might cause reconciliation issues.
What if we used PostgreSQL with a JSONB column instead?
We'd get the flexibility without sacrificing ACID.
不同意但需推进时
I'm not fully convinced, but I'm happy to go with the
team's decision.
Let's move forward with [方案], but keep an eye on [风险].
We can revisit if it becomes a problem.
六、催进度
核心原则
表示理解对方忙 + 说明为什么需要催。 不要只发 “Any updates?”,加一句”为什么”。
模板
Hi [Name],
I know you're swamped — just checking in on [事情]
because [我需要它的原因 / 截止时间].
No rush if you're buried, just want to make sure
it's on your radar.
Thanks!
不同场景
| 场景 | 说 |
|---|---|
| 普通催 | Just checking in — any updates on [事情]? |
| 有截止时间 | Just a heads up: I need [事情] by [日期] to [原因]. |
| 催了多次 | Bumping this since the deadline is [日期]. Is there anything I can do to help move this forward? |
| 上级催 | My manager is asking about [事情]. Could you give me a quick update? |
| 被催了 | Thanks for the nudge! I’ll have it by [时间]. / Still working on it — will update you by [时间]. |
七、请求帮助
模板
Hi [Name],
I'm [在做什么] and I'm stuck on [具体问题].
[我试过什么].
Could you spare 10 minutes to take a look?
[为什么找这个人].
Thanks!
示例
Hi Alice,
I'm debugging a memory leak in the order service and
I'm stuck on the heap dump analysis. I've tried increasing
the heap size and checking for unclosed connections,
but the leak persists.
Could you spare 10 minutes to take a look? I know you
dealt with a similar issue on the payment service last month.
Thanks!
拒绝请求
| 说 | 语气 |
|---|---|
| I’d love to help, but I’m swamped until [日期]. Can it wait? | 礼貌推迟 |
| I’m not the best person for this — [某人] knows more about [领域]. | 推荐别人 |
| I can take a quick look, but I won’t be able to dive deep until next week. | 限时限深 |
| Sorry, I don’t have bandwidth for this right now. | 直接拒绝 |
八、主持会议
开场
Alright, let's get started. Today we're [会议目的].
We have [N] minutes, so let's keep it moving.
On the agenda:
1. [议题 1] — [N] min
2. [议题 2] — [N] min
3. [议题 3] — [N] min
控场
| 场景 | 说 |
|---|---|
| 有人跑题 | Let’s park that for now and come back to it if we have time. |
| 有人话太多 | I want to make sure we hear from everyone. [某人], any thoughts? |
| 超时 | We’re running out of time. Let’s take the rest offline. |
| 冷场 | Anyone have thoughts on this? / [某人], what do you think? |
| 有人没发言 | [某人], I’d love to hear your perspective on this. |
| 决策 | Sounds like we have a decision. Let me summarize: [结论]. |
| 需要表决 | Let’s do a quick round — thumbs up if you’re on board? |
收尾
To recap:
- [决定 1]
- [决定 2]
Action items:
- [某人]: [做什么] by [时间]
- [某人]: [做什么] by [时间]
Next meeting: [时间]. Thanks everyone!
结束语
| 说 | 场景 |
|---|---|
| I think we covered everything. Thanks everyone! | 议程完成 |
| We’re out of time, but this was productive. Let’s continue next time. | 时间到但有进展 |
| Great discussion. Let’s follow up async on the open items. | 有遗留项 |
| Thanks for the great input. I’ll send out the notes. | 有后续 |
九、做技术分享
开场
Hi everyone, I'm [Name] from the [Team] team.
Today I'll be talking about [主题].
Here's what we'll cover: [大纲].
Feel free to ask questions — I'll leave time at the end.
过渡
| 说 |
|---|
| Now let’s move on to [下一个话题]. |
| Here’s where things get interesting. |
| To give you a concrete example… |
| The key takeaway here is [核心认知]. |
| Let me zoom in on this part. |
| Before I wrap up, I want to highlight [重点]. |
回答问题
| 说 | 场景 |
|---|---|
| That’s a great question. | 被问到了(争取思考时间) |
| Let me get back to you on that — I don’t have the numbers handy. | 不知道答案 |
| I’m not sure about that. Let me look into it and follow up. | 不确定 |
| Could you clarify what you mean by [关键词]? | 没听懂问题 |
| Does that answer your question? | 确认是否解答了 |
收尾
That's all I have. Thanks for listening!
I'm happy to take questions.
[可选: 分享链接 / 联系方式]
十、处理冲突
核心原则
先理解对方立场,再表达自己立场。 用 “I” 而不是 “You” 开头(“I feel” 而不是 “You did”)。
句式
| 你想说 | 不要说 | 要说 |
|---|---|---|
| 你错了 | You’re wrong. | I see it differently. Here’s my perspective… |
| 你没听懂 | You don’t understand. | Let me rephrase — I might not have been clear. |
| 这不是我的问题 | That’s not my problem. | I think this falls under [某人/团队的] scope. Let me check. |
| 你应该早说 | You should have said this earlier. | I wish I’d known about this sooner — it would have saved some effort. Looking forward, let’s [改进]. |
| 我没时间 | I don’t have time for this. | I’m juggling a few things right now. Can we prioritize? |
道歉
| 说 | 场景 |
|---|---|
| My bad — I’ll fix it. | 小错误 |
| Sorry about that. I should have [应该做的事]. | 一般错误 |
| I apologize for the confusion. Let me clarify. | 造成困惑 |
| That’s on me. I’ll make sure it doesn’t happen again. | 承认责任 |
| Thanks for flagging this. I’ll [怎么补救]. | 感谢对方指出 |
常见追问
怎么让语气更礼貌?
三个词:could / would / may。
| 太直接 | 更礼貌 |
|---|---|
| I need this by Friday. | Could you get this to me by Friday? |
| Send me the report. | Would you mind sending me the report? |
| This is wrong. | I think there might be a mistake here. |
再加一个技巧:把命令变成问题。
- “Do this” → “Could we do this?”
- “I need X” → “Would it be possible to get X?”
开会时插不上话怎么办?
三个插入点:
- 别人说完一个观点后,快速说 “Quick thought on that — [你的观点]”
- 主持人问 “Any thoughts?” 时,立刻接上(这是最容易插话的时机)
- 用 “To add to what [某人] said — [你的补充]”
如果一直插不上:会后单独找同事或通过文字(Slack/邮件)表达你的观点。“I had a thought after the meeting — [想法].”
怎么向老板汇报?
三句话汇报法:
- Here’s what I did: [一句话]
- Here’s the impact: [一句话]
- Here’s what’s next: [一句话]
示例:
Here's what I did: Shipped the retry logic for payments.
Here's the impact: Failure rate dropped from 0.5% to < 0.01%.
Here's what's next: I'm adding alerting so we catch issues faster.