Skip to content Skip to sidebar Skip to footer

ERROR:tornado.general:Could Not Open Static File

I'm writing a tornado web app and have a file named 'static' with files such as main.js, require.js, elasticsearch.js, and d3.v3.js. The last three are just source code for the jav

Solution 1:

Are the js files directly in the static directory or in a scripts subdirectory? Assuming you did something like static_path="static" when creating the application, the files need to live in static/scripts/*.js to match the paths you use in your static_url call.


Post a Comment for "ERROR:tornado.general:Could Not Open Static File"