Rupert Rawnsley
Member since Feb 28, 2012
- Profile: /members/9671-rupert-rawnsley.htm
- URL: https://twitter.com/RupertRawnsley
- Comments: 3
Recent Blog Comments By Rupert Rawnsley
-
deserializeJson() Silently Fails On High-Precision Numbers In Lucee CFML 5.3.4.77
Posted on Apr 30, 2022 at 11:34 AM
Ah, yes you are right that's neater.... read more »
-
deserializeJson() Silently Fails On High-Precision Numbers In Lucee CFML 5.3.4.77
Posted on Apr 30, 2022 at 9:34 AM
Thanks for sharing this Ben, but OMG what awful behaviour! Here's a hack for recursive correction when your data is in a struct, which is basically all the time when you use JSON: function correctNumericTypes(target) { if(isStruct(target)) { for(key in StructKeyList(target)) { ... read more »