Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to use web workers to be able to run several javascript codes at the same time. To start the worker I put the following into my javascript code section:

var worker = new Worker("my_task.js");
worker.onmessage = function(e) {
    console.log('Worker said: ', e.data);
};
worker.postMessage("test"); 

my_task.js is the same folder as the file that holds the code above. This is how my_task.js looks like:

self.addEventListener('message', function(e) {
  self.postMessage(e.data);
}, false);

But there seems to be a problem with Ruby on Rails (version 3.2.1):

Started GET "/users/my_task.js" for 127.0.0.1 at ...
...
...
ActiveRecord::RecordNotFound (Couldn't find User with id=my_task)

As you can see Rails tries to send an http get request when the script is started.
How can I solve this problem? Is there a better way to use web workers in Rails projects?

Thanks

share|improve this question
There does not seem a problem with ruby on rails, there seems to be a problem with your code because you supply my_task as id instead of an actual ID. Can you post your worker code please? – pduersteler Feb 19 at 11:19
Where do you store my_task.js? – basgys Feb 19 at 11:45
In the same folder as the file that holds the worker.postMessage code – zobel Feb 19 at 12:01

1 Answer

Put my_task.js in the public folder.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.