DRY Rails 元编程 - 用例

发布于 2024-10-11 21:36:45 字数 239 浏览 2 评论 0原文

因此,我在我的应用程序中运行,通过元编程应用此特定用例来干燥您的应用程序:

http://rails-bestpractices.com/posts/16-dry-metaprogramming

您还通过哪些其他方式应用元编程来保持您的应用程序干燥?

So I've running around my app, applying this particular use case for DRY'ing your app via metaprogramming:

http://rails-bestpractices.com/posts/16-dry-metaprogramming

In what other ways are you applying metaprogramming to keep your app DRY?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

甜中书 2024-10-18 21:36:45

我编写了一个名为 to_lang 的 gem,它利用了这种类型的动态方法定义。它将一系列方法添加到 to_language 形式的字符串中,这些方法都调用具有不同参数的单个方法。 ToLang::StringMethods尤其是这个魔法发生的地方。在没有元编程的情况下做同样的事情将需要定义数百个方法。

I wrote a gem called to_lang which makes use of this type of dynamic method definition. It adds a bunch of methods to strings in the form to_language which all call a single method with different parameters. ToLang::StringMethods in particular is where this magic happens. Doing the same thing without metaprogramming would require the definition of hundreds of methods.

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