火花课堂六步法

课堂学习方法

通过与课程主题相关的生活场景、动手操作、游戏故事、关键提问等方式引起孩子对学习的兴趣与热情,增强学习的内在动机。

通过与课程主题相关的生活场景、动手操作、游戏故事、关键提问等方式引起孩子对学习的兴趣与热情,增强学习的内在动机。

孩子根据自我探索的经验,对问题的解决办法进行猜想,老师鼓励孩子表达总结,强化自我意识,不盲从。

针对孩子的猜想,老师给予孩子相同类型的问题,每个孩子就之前的自我猜想进行自我验证。

引导孩子对知识主题整体的探索,猜想,验证进行反思,总结问题解决思维与策略,培养孩子元认知能力,思辨能力,反思能力。

引导孩子对知识主题整体的探索,猜想,验证进行反思,总结问题解决思维与策略,培养孩子元认知能力,思辨能力,反思能力。

/** * Change cache time on form tokens * * @link https://wpforms.com/developers/how-to-change-the-cache-time-on-your-form-token */ // Create our array of times to check before today. A user with a longer // cache time can extend this. A user with a shorter cache time can remove times. $valid_token_times_before = apply_filters( wpforms_form_token_check_before_today', [ ( 2 * DAY_IN_SECONDS ), // Two days ago. ( 1 * DAY_IN_SECONDS ), // One day ago. ] ); // Mostly to catch edge cases like the form page loading and submitting on two different days. // This probably won't be filtered by users too much, but they could extend it. $valid_token_times_after = apply_filters( 'wpforms_form_token_check_after_today', [ ( 45 * MINUTE_IN_SECONDS ), // Add in 45 minutes past today to catch some midnight edge cases. ] ); // Example use of the token: add_filter( 'wpforms_form_token_check_before_today', 'example_add_longer_token_time_before' ); /** * Extend the expiration time. */ function example_add_longer_token_time_before( $times ) { // Allow the token to persist for 5 days $times[] = 3 * DAY_IN_SECONDS; $times[] = 4 * DAY_IN_SECONDS; $times[] = 5 * DAY_IN_SECONDS; } add_filter( 'wpforms_form_token_check_after_today', 'example_add_longer_token_time_after' ); /** * This filter is to catch edge cases of someone loading the form and submitting, * with the expiration happening in between. Making this longer allows for more leeway. */ function example_add_longer_token_time_after( $times ) { $times = array( DAY_IN_SECONDS ); }