Ask Ben: Converting Javascript Variables Into ColdFusion Variables

Posted June 22, 2009 at 9:51 AM by Ben Nadel

Tags: ColdFusion, Javascript / DHTML, Ask Ben

How can I convert a JavaScript variable into a coldfusion variable?

I have been asked this question enough times that I figured it was be time to turn it into an actual Ask Ben blog post for future reference. Often times, when front-end developers start getting into server-side scripting (hopefully using ColdFusion), there is some confusion as to where the various parts of the page rendering work flow are executing. And, because of this confusion, developers get stuck trying to access one part of the work flow from another.


 
 
 

 
ColdFusion Executes On The Server - Javascript Executes On The Client (Web Browser).  
 
 
 

To clear up the confusion, I think you just need to step back and understand the request-response processing work flow:

  1. The server gets a request to deliver some content (at the given URL).
  2. The server constructs the response (in our case, an HTML page containing Javascript).
  3. The server returns the HTML data to the client (Web Browser).
  4. The data streams from the Server to the Client.
  5. The browser renders the response (HTML page) for the user at which time any embedded Javascript code executes.

Once we hit step #4, the ColdFusion server is no longer involved. In step #5, when the client renders the HTML response, it doesn't even have to know where the HTML data came from. As such, when the Javascript executes in step #5, it has no knowledge of nor any access to the ColdFusion portion of the page response work flow - these two points of execution happen at different times on different machines.

Javascript can, however, communicate with the ColdFusion server by making AJAX-based page requests. These HTTP requests are viewed by the ColdFusion server as completely new page requests by the client and do not have access to temporary ColdFusion variables created during previous requests (unless those variables were explicitly cached on the server).

So, the moral of the story is that you can't really turn a Javascript variable into a ColdFusion variable because the two are completely unrelated. Once you understand the page request / response work flow, this becomes obvious. If you want Javascript to send values back to the ColdFusion server for further processing, you can only do so via AJAX requests. I hope that this clears up some confusion.



Reader Comments

Jun 22, 2009 at 9:13 PM // reply »
1 Comments

You can always write to a hidden form field if you are processing a form, etc.


Jun 23, 2009 at 12:56 AM // reply »
34 Comments

Great Post

When you are calling your JavaScript you can always have the included JavaScript file end in a .cfm which would help in some cases... This will allow you to load different content based on variables that you pass... you can always pass variables through JavaScript like so...

<script type="text/javascript"
src="javascript.cfm?var1=bob&var2=frank">
</script>

This essential will pass the variables to coldfusion in which you can convert the variables into coldfusion variables using the url variable... I have used this method a few times but I don't recommend it for really robust applications.


Jun 23, 2009 at 1:37 AM // reply »
1 Comments

What about <cfwddx action="cfml2js" ... />?
Sure, we can't use ColdFusion vars on the client side, but we can serialize them and return to the browser along with the rest of the JavaScript code.


Jun 23, 2009 at 4:59 AM // reply »
1 Comments

json format is very helpfull to pass variables between javascript and coldfusion in ajax calls. There are 2 coldfusion functions since cf8 DeserializeJSON() and SerializeJSON().
And from you javascript code you can serialize your JS variables to a json string by using the json serializer( http://www.JSON.org/json2.js ).


Jun 23, 2009 at 6:06 PM // reply »
10,640 Comments

@Jody,

Definitely true - a great technique.

@Alexey,

Yeah - using ColdFusion variables to help render the Javascript that ultimately gets executed by the browser is definitely some we can do, and is the easier of the two directions (server to client vs. client to server).

@Patrick,

JSON rocks! 'nuff said.


Nov 28, 2010 at 2:22 AM // reply »
2 Comments

Hey Jody can i get a practical example of what u have suggested.

Thanks in advance..


Nov 28, 2010 at 8:14 PM // reply »
10,640 Comments

@Shailesh,

What @Jody is talking about is basically getting a CFM file to "serve" up a Javascript file. Since it's a CFM file, it will push any query-string-based variables into the URL scope. So, for example, if you had the following script block:

<script src="scripts.cfm?foo=bar"></script>

... then you could have a CFM file (scripts.cfm) that looked like this:

  • <cfoutput>
  • var myJavascriptValue = "#url.foo#";
  • </cfoutput>
  •  
  • <cfcontent type="text/javascript" />

As you can see, our Javascript file content is generated by ColdFusion. Then, we use the CFContent tag to tell the browser that this file being rendered is actually a "Javascript" file, not an HTML file.


Nov 29, 2010 at 11:53 AM // reply »
2 Comments

@Ben,

Thanks Ben for a detailed explanation.. :)


Dec 5, 2010 at 3:15 PM // reply »
10,640 Comments

@Shailesh,

Any time my friend.


Jan 19, 2011 at 7:26 AM // reply »
2 Comments

if i am including a y.cfm file in page x.cfm via <script>, how do i print a variable which is in y.cfm file on the x.cfm page or y.cfm page?


fco
Mar 2, 2011 at 12:47 PM // reply »
1 Comments

Ben...cannot one use the ToScript function. From the cfml 9 pdf reference page 1276-1279:

"This function can convert ColdFusion strings, numbers, arrays, structures, and queries to JavaScript or ActionScript syntax that defines equivalent variables and values."

..."Usage:
To use a ColdFusion variable in JavaScript or ActionScript, the ToScript function must be in a cfoutput region and be surrounded by number signs (#). For example, the following code uses the ToScript function to convert a ColdFusion variable to a JavaScript variable:

<cfset thisString="hello world"> <script type="text/javascript" language="JavaScript">
<cfoutput> var #toScript(thisString, "jsVar")#;
</cfoutput>
</script>

When ColdFusion runs this code, it sends the following to the client:
<script type="text/javascript" language="JavaScript"> var jsVar = "hello world";
</script>"

So it seems the ColdFusion ToScript function allows communicate of variables between CF9 and Javascript/Actionscript and in both directions.


Nov 23, 2011 at 9:19 PM // reply »
1 Comments

Hi All,
it might a liltle too late... :)
but i have problem with javascript and coldfusion.
I have a 'Process' button on my CF and that button create a JavaScript 'alert' which is has value Yes/No.
If i choose Yes, then CF will run codes to update a table but if I choose No then CF will only show the table content.
So how is it the CF get the value Yes or No from JS.
I'm new comer in CF and not familiar with JavaScript (:( ),soo please help me with detail example for the solution of my problem.

Thanks all...

Regards,


PJ
Jan 19, 2012 at 7:36 PM // reply »
5 Comments

Thank you SO much! Wish I'd found this before a long time in google... funny how many of the answers I finally find end up being on your blog. ;-)

I want to get the html page (or window) height in order to set the framed height of a cflayout bound tab. Apparently the only way you can get this info is through javascript (e.g. jquery), but then there's no way to automatically get the info back to CFML in order to have it set a variable for the tab height. So either my tabs (already a double-scroll in most 'lists' cases) have a scrollbar that go way off the page which is not properly functional, or, people with 21" monitors have what looks like about 3.5 inches of content near the top of their screen. (If I don't define the height, CF appears to default to giving me what looks like about 20 pixels...)

Do you know of any solution to this?

PJ



Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »
Feb 9, 2012 at 10:29 PM
Learning ColdFusion 9: Application-Specific Data Sources
@Ben, No offence, but if people were really wanting advanced features they would be using a platform like ASP.NET MVC. CFML is so structurally compromised as a tag-based scripting language that ... read »
Feb 9, 2012 at 10:03 PM
Subversion - Cleanup Failed To Process The Following Paths
@Leviaguirre, do you still have problems with this? ... read »