在 slim 模板中调用带有参数的函数时出现语法错误
我有一个苗条的模板,我在其中调用像这样的函数:
textarea.form-control value = @function(parameter)
但是我收到以下错误:
syntax error, unexpected '(', expecting ')'
奇怪的是它不喜欢 '(" 字符,因为这就是我想象的我们如何使用模板中的参数调用函数。什么是我做错了,如何从 slim 模板中调用带有参数的函数,如果这是一个基本问题,我很抱歉,我对 slim 和 ruby 很陌生。
I have a slim template where I call a function like so:
textarea.form-control value = @function(parameter)
However I get the following error:
syntax error, unexpected '(', expecting ')'
Its strange that it does not like the '(" character because that's how I would imagine we would call functions with arguments from a template. What am I doing wrong and how can I call a function with an argument from a slim template. Apologies if this is a basic question, I am very new to slim and ruby
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要
@
:只要定义了
function
和parameter
就应该可以工作。您可能会将 Ruby 属性(使用
@
)与函数/方法(不使用 @)混淆。如果你想传递一个属性作为参数,那么你需要在其名称前面添加@
:You don’t need the
@
:As long as
function
andparameter
are defined then this should work.You may be confusing Ruby attributes (which use
@
) with functions/methods (which don’t). If you want to pass an attribute as the parameter, then you need the@
in front of its name: