gpt4 book ai didi

Angular2 RC1 管道总是通过未定义的

转载 作者:太空狗 更新时间:2023-10-29 18:17:17 24 4
gpt4 key购买 nike

从 Beta 升级到 RC1 后,管道似乎无法正确传递数据。我收到以下信息:

ORIGINAL EXCEPTION: TypeError: Cannot read property '1' of undefined
ORIGINAL STACKTRACE:
TypeError: Cannot read property '1' of undefined

这是一个旧的 plunker,但它显示了我在我的应用程序中使用管道的方式。 https://plnkr.co/edit/DHLVc0?p=preview

有时我一点错误都没有,它把页面当作没有任何管道一样对待。

最佳答案

2.0.0-beta.16 版本中,管道发生了重大变化。来自 angular2 changelog

pipes now take a variable number of arguments, and not an array that contains all arguments.

因此,transform(value, args){} 现在是 transform(value,args...){}

之前

transform(value, [arg1,arg2,arg3])

现在

transform(value, arg1, arg2, arg3)

如果您不想对管道进行任何更改,您仍然可以使用它们,但您需要更改添加参数的方式

之前:

{{someValue|somePipe:arg1:arg2}} 

将其更改为:

{{someValue|somePipe:[arg1,arg2]}} // this will work with the new syntax without changing anything in the pipe itself

或者,更好的方法是更改​​管道并使转换方法接受多个参数而不是一个数组。

现在,开始回答您的问题:

要使其与新版本一起使用,您只需更改:

transform(input:any, [config = '+']): any{

transform(input:any, config = '+'): any{

就是这样。因为在您的代码中,您绝不会使用多个参数调用管道。它始终是一个参数数组,非常适合新语法。

Here is your plunk fixed

关于Angular2 RC1 管道总是通过未定义的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37197293/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com