在 slim 模板中调用带有参数的函数时出现语法错误

发布于 2025-01-11 01:31:13 字数 310 浏览 0 评论 0原文

我有一个苗条的模板,我在其中调用像这样的函数:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凯凯我们等你回来 2025-01-18 01:31:13

您不需要 @

textarea.form-control value = function(parameter)

只要定义了 functionparameter 就应该可以工作。

您可能会将 Ruby 属性(使用 @)与函数/方法(不使用 @)混淆。如果你想传递一个属性作为参数,那么你需要在其名称前面添加@

textarea.form-control value = function(@attribute)

You don’t need the @:

textarea.form-control value = function(parameter)

As long as function and parameter 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:

textarea.form-control value = function(@attribute)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文