我根本无法让它工作:
renderContentOn: html
html form: [
html textInput
on: #newEmp of: self.
html submitButton
callback: [ self addEmployee: newEmp ];
text: 'Add Employee'.
self employeeNames do: [ :eachEmp | html text: Character cr asString. html text: eachEmp.]
]
我只是不断地将我的输出放在一行上。我错过了什么吗?我已经尝试了几种变体,cr
但到目前为止都没有奏效。