0
我正在使用UIWebView應用程序,並從JavaScript代碼中的服務器獲取一些信息。我希望將JSON文本寫入文檔目錄中的文件。我的JavaScript文件的開頭部分是:UIWebView寫入磁盤方法
WW.FS = {
init: function(animation, back, fn) {
var me = window.ww ? ww.fs : null;
if (me != null) {
PL.tellNative('pl:closeMore');
}
if (!me || !back) {
Ext.Ajax.request({
url: WW.getBS(),
method: 'POST',
params: {ajax: true, source: 'Touch', ID: 'INT'},
success: function(response) {
try {
data = JSON.parse(response.responseText); <--- want to write this to the documents directory!!
} catch(e) {
PL.indicatorOff();
return false;
}
我需要以某種方式得到變量「數據」回無論是從我把它叫做JavaScript文件.m文件或將其寫入文件的目錄,以便我能稍後閱讀。有誰知道如何將變量寫入磁盤?我一直在尋找一種方法將數據傳輸到文檔目錄中,但沒有用處。任何幫助將不勝感激。
也許這可以幫助你[鏈接](http://mobdevelopment.wordpress.com/2012/07/28/how-to-call-an-objective-c-method-from-javascript/)! – Scar 2013-02-13 17:44:37