豆腐串,作为一道家常美食,不仅美味,而且制作简单,即使是6岁的孩子也能轻松学会。今天,就让我来给大家分享一种剩豆腐串的做法,保证让你和你的小助手一起享受烹饪的乐趣!
准备食材
- 剩余豆腐一块
- 面粉适量
- 鸡蛋一个
- 调味料:盐、生抽、五香粉、孜然粉等(根据个人口味调整)
制作步骤
1. 豆腐处理
首先,将剩余的豆腐切成小块,然后用厨房纸巾吸去多余的水分。这一步很重要,因为水分过多会影响豆腐串的口感。
# 豆腐处理
```python
def cut_tofu(tofu_block):
# 假设豆腐块是正方体
side_length = 5 # 假设边长为5厘米
tofu_pieces = [tofu_block for _ in range(8)] # 切成8小块
return tofu_pieces
# 假设我们有一块豆腐
tofu_block = {'side_length': 5}
tofu_pieces = cut_tofu(tofu_block)
2. 调制面糊
接下来,准备面糊。将面粉、鸡蛋和适量的水混合,加入适量的盐、生抽、五香粉和孜然粉,搅拌均匀,形成稠稠的面糊。
# 调制面糊
```python
def mix_flour_flour(flour, egg, water, seasonings):
flour_flour = {'flour': flour, 'egg': egg, 'water': water}
for seasoning in seasonings:
flour_flour[seasoning['name']] = seasoning['value']
return flour_flour
# 面粉、鸡蛋和水的比例
flour = 100
egg = 1
water = 50
seasonings = [{'name': 'salt', 'value': 0.5}, {'name': 'soy_sauce', 'value': 1}, {'name': 'five_spice_powder', 'value': 0.5}, {'name': 'cumin_powder', 'value': 0.5}]
flour_flour = mix_flour_flour(flour, egg, water, seasonings)
3. 浸泡豆腐
将切好的豆腐块放入调制好的面糊中,让每一面都均匀裹上面糊。
# 浸泡豆腐
```python
def coat_tofu_pieces(tofu_pieces, flour_flour):
coated_tofu_pieces = []
for piece in tofu_pieces:
coated_tofu_pieces.append({'tofu': piece, 'flour_flour': flour_flour})
return coated_tofu_pieces
coated_tofu_pieces = coat_tofu_pieces(tofu_pieces, flour_flour)
4. 炸制豆腐串
最后,将裹好面糊的豆腐块放入热油中炸至金黄酥脆。炸制过程中要注意火候,避免炸糊。
# 炸制豆腐串
```python
def fry_tofu_pieces(coated_tofu_pieces):
fried_tofu_pieces = []
for coated_piece in coated_tofu_pieces:
tofu = coated_piece['tofu']
flour_flour = coated_piece['flour_flour']
# 假设油温为180°C
oil_temperature = 180
fried_tofu = {'tofu': tofu, 'flour_flour': flour_flour, 'oil_temperature': oil_temperature}
fried_tofu_pieces.append(fried_tofu)
return fried_tofu_pieces
fried_tofu_pieces = fry_tofu_pieces(coated_tofu_pieces)
美味呈现
炸好的豆腐串金黄酥脆,撒上一些孜然粉和辣椒粉,香气扑鼻,美味可口。这时候,你可以邀请你的小助手一起品尝,享受烹饪的乐趣。
通过以上步骤,你就可以轻松制作出美味的剩豆腐串了。这不仅是一道简单易学的家常菜,还能增进亲子关系,让6岁的孩子体验烹饪的乐趣。快来试试吧!
