在文本输入下创建按钮时如何解决错误?

时间:2019-01-30 23:18:03

标签: syntax elm

我想在这2个文本输入下创建一个按钮。我只是改写了文档中的代码。但是我得到这个错误:

  

if [[ "$host" = "" ]]; then echo "please enter host" read host fi if [[ "$startport" = "" ]]; then echo "please enter startport" read startport fi if [[ "$stopport" = "" ]]; then echo "please enter stopport" read stopport fi if [[ "$t" = "-t" ]]; then if [[ "$numval" -eq 2 ]]; then echo "time out is $numval" else echo "time out changed to $numval" fi fi 函数需要2个参数,但它取5个参数。

我该如何解决?

div

1 个答案:

答案 0 :(得分:7)

您的代码(省略了孩子)可以重新设置为

div [] [ ... ] div [] [ ... ]

您知道为什么编译器认为您给div五个参数吗?

由于view应该返回一个元素,因此您必须将div包裹在其他元素中,例如另一个div

div []
  [ div [] [ ... ]
  , div [] [ ... ]
  ]