Coder Social home page Coder Social logo

Comments (4)

andreas-it-dev avatar andreas-it-dev commented on June 2, 2024

console fun:

2.7.2 :015 > k = "frontend"
 => "frontend" 
2.7.2 :016 > kk="theme"
 => "theme" 
2.7.2 :017 > @user = User.first
  User Load (0.4ms)  SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1  [["LIMIT", 1]]
 => #<User id: 4, email: "[email protected]", name: "Andreas", created_at: "2021-01-24 13:20:47", updated_at: "2021-01-26 10:05:50"> 
2.7.2 :018 > @user.settings(k.to_sym).send(kk) = "dark"
Traceback (most recent call last):
SyntaxError ((irb):18: syntax error, unexpected '=', expecting end-of-input)
...r.settings(k.to_sym).send(kk) = "dark"
...                              ^
2.7.2 :019 > @user.settings(:frontend).theme = "dark"
  RailsSettings::SettingObject Load (0.4ms)  SELECT "settings".* FROM "settings" WHERE "settings"."target_id" = $1 AND "settings"."target_type" = $2  [["target_id", 4], ["target_type", "User"]]
 => "dark" 
2.7.2 :020 > 

from rails-settings.

ledermann avatar ledermann commented on June 2, 2024

Instead of

my_object.send(attr_name) = "dark" # syntax error

use this:

my_object.send("#{attr_name}=", "dark")

from rails-settings.

andreas-it-dev avatar andreas-it-dev commented on June 2, 2024

hey @ledermann thx for the super fast response..

interesting concept but unfortunately this does not store any value.. it doesnt thrown an error but it just doesnt update the value

from rails-settings.

andreas-it-dev avatar andreas-it-dev commented on June 2, 2024

strike that, all good.. if i dont save the @user instance, it certainly wont update the db..

excellent, works like a charme, thanks again!

from rails-settings.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.