在阅读 Websharper 在线示例时,我遇到了这样的示例:
Div [Attr.Style "padding: 5px;"] -< [
P [Text "Type a name in the input field below:"]
Form [
label "First Name: "
input
|>! OnKeyUp (fun _ _ -> update ())
]
P [
label "Suggestions: "
hint
]
]
我们似乎不在计算表达式中,并且由于某种原因,谷歌搜索|>!
.
!
修饰符在这种情况下有什么作用?它如何改变正向管道的结果?