设计模式 ?将相同的多个参数传递给

时间:2017-08-02 04:27:47

标签: javascript design-patterns

我需要用javascript制作某种表格项目工厂。这个想法是你从后端获取数据并生成需要具有不同事件处理程序的表单,这些表单采用相同的参数但内容不同。

const updateHandler = (dispatch, formName, section) => {

   return (value) => {
     //do some stuff with value
     //... this part is different for the each different form


     //call function that handles updating redux and url
     updateUrl(dispatch, formName, section, value, ...)
     //taking same argument
   }

}

我想知道我是否可以记住子函数的3个共享参数,这样我就不必再次传递相同的东西了。 我考虑过蜷缩或涂抹,但我不能通过蜷缩或涂抹来达到目的。

0 个答案:

没有答案