How get integer value from a enum in Rails?

Cleyton :

I have a enum in my Model that corresponds to column in the database.

The enum looks like:

  enum sale_info: { plan_1: 1, plan_2: 2, plan_3: 3, plan_4: 4, plan_5: 5 }

How can I get the integer value?

I've tried

Model.sale_info.to_i

But this only returns 0.

Shadwell :

You can get the integer values for an enum from the class the enum is on:

Model.sale_infos # Pluralized version of the enum attribute name

That returns a hash like:

{ "plan_1" => 1, "plan_2" => 2 ... }

You can then use the sale_info value from an instance of the Model class to access the integer value for that instance:

my_model = Model.find(123)
Model.sale_infos[my_model.sale_info] # Returns the integer value

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to get an integer value from Entry in Tkinter?

分類Dev

How to get default value of an enum from a type variable

分類Dev

How to get Enum value statically?

分類Dev

How to get RecyclerView's child from integer value?

分類Dev

How to get enum value of raw type from an enum class and a string in kotlin

分類Dev

Get enum from property's raw value

分類Dev

C++ 11 How to get enum class value by int value?

分類Dev

How to get integer LocationId into ViewModel from ListItem?

分類Dev

How to combine three consecutive Modbus registers to get an integer value?

分類Dev

How to get the Integer value of a column in .withColumn function? [Spark - Scala]

分類Dev

How can I get textbox value into array and convert into integer in java

分類Dev

Polymer How to get integer value of paper-dropdown menu

分類Dev

How to get value from DatePicker

分類Dev

Can not get the value from Input React (react-rails gem)

分類Dev

How to get a random enum in TypeScript?

分類Dev

How to get value by key from JObject?

分類Dev

How to get value by key from JObject?

分類Dev

how to get value from appsettings.json

分類Dev

how to get value from appsettings.json

分類Dev

How to get the value type from an output iterator?

分類Dev

How to get checkbox value from FormCollection?

分類Dev

How to get numeric value from cURL array?

分類Dev

How to get the value from include statement in a variable?

分類Dev

How to get value from contentEditable in reactjs

分類Dev

How to get a string value from an EditText in RecyclerView?

分類Dev

How to get the value from angular material checkbox

分類Dev

how to get the value from the tag for change css

分類Dev

How to get AsyncStorage value from outside of function

分類Dev

How to get value of variable from open file

Related 関連記事

  1. 1

    How to get an integer value from Entry in Tkinter?

  2. 2

    How to get default value of an enum from a type variable

  3. 3

    How to get Enum value statically?

  4. 4

    How to get RecyclerView's child from integer value?

  5. 5

    How to get enum value of raw type from an enum class and a string in kotlin

  6. 6

    Get enum from property's raw value

  7. 7

    C++ 11 How to get enum class value by int value?

  8. 8

    How to get integer LocationId into ViewModel from ListItem?

  9. 9

    How to combine three consecutive Modbus registers to get an integer value?

  10. 10

    How to get the Integer value of a column in .withColumn function? [Spark - Scala]

  11. 11

    How can I get textbox value into array and convert into integer in java

  12. 12

    Polymer How to get integer value of paper-dropdown menu

  13. 13

    How to get value from DatePicker

  14. 14

    Can not get the value from Input React (react-rails gem)

  15. 15

    How to get a random enum in TypeScript?

  16. 16

    How to get value by key from JObject?

  17. 17

    How to get value by key from JObject?

  18. 18

    how to get value from appsettings.json

  19. 19

    how to get value from appsettings.json

  20. 20

    How to get the value type from an output iterator?

  21. 21

    How to get checkbox value from FormCollection?

  22. 22

    How to get numeric value from cURL array?

  23. 23

    How to get the value from include statement in a variable?

  24. 24

    How to get value from contentEditable in reactjs

  25. 25

    How to get a string value from an EditText in RecyclerView?

  26. 26

    How to get the value from angular material checkbox

  27. 27

    how to get the value from the tag for change css

  28. 28

    How to get AsyncStorage value from outside of function

  29. 29

    How to get value of variable from open file

ホットタグ

アーカイブ