You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -190,14 +190,14 @@ Because your controller's `config()` function only runs once per application sta
190
190
For example, this code would only evaluate the value for `request.region` on the very first request, and CFWheels will store that particular value in memory for all subsequent requests:
To avoid this hard-coding of values from request to request, you can instead pass an expression. (The double pound signs are necessary to escape dynamic values within the string. We only want to store a string representation of the expression to be evaluated.)
198
198
199
199
```javascript
200
-
// This is probably more along the lines of what you intended
200
+
// This is probably more along the lines of what you intended
0 commit comments