javascript - Data in a browser application only backed by a file server -
morning everybody. before anything, please forgive english language it's not mother tongue ! speak html5, css3, javascript , php among others...
to enhance performance @ work i'm thinking single page browser app. beingness linked military, guys quite "locked" :
all have access basic file server normal user has read/write authorisation, we're stuck legacy browsers (ie 8 , firefox 17) no file/blob api, they don't allow utilize web server (so no apache or nginx...) or installation of software.in order create thing maintanable, wish separate info main page. how can handle info persistence ?
from read perspective, best guess far embed info need @ bottom of index.html... not classy !
from read/write perspective, no clue yet !
thank help. paul
depending on command on security settings of net explorer, 1 alternative explore utilize filesystemobject scripting object, eg:
var fso = new activexobject("scripting.filesystemobject") var tf = fso.createtextfile("c:\\temp\\mytest.txt", true); tf.writeline('hello world!'); tf.close();
javascript html fileserver
No comments:
Post a Comment