Is it possible to modify/write data to an XML file without any server-side proxy(e.g. a php or asp script)? Can this be done via javascript? XSLT?
是否可以在没有任何服务器端代理(例如php或asp脚本)的情况下将数据修改/写入XML文件?这可以通过javascript完成吗? XSLT?
3 个解决方案
#1
1
You can load and modify xml in browser, but writing the file back is a different thing.
您可以在浏览器中加载和修改xml,但是将文件写回来是另一回事。
I don't know of any feasible way of writing data back to a server without some kind of server side mechanism to write the data to disk.
我不知道在没有某种服务器端机制将数据写入磁盘的情况下将数据写回服务器的任何可行方法。
#2
0
Using the XMLHTTPRequest object you can modify an XML document using XSLT. Here's a sample article for getting started.
使用XMLHTTPRequest对象,您可以使用XSLT修改XML文档。这是一个入门的示例文章。
#3
-2
Yes it is possible. You can do it with pure javascript or using a library like jquery
对的,这是可能的。您可以使用纯JavaScript或使用像jquery这样的库来完成
#1
1
You can load and modify xml in browser, but writing the file back is a different thing.
您可以在浏览器中加载和修改xml,但是将文件写回来是另一回事。
I don't know of any feasible way of writing data back to a server without some kind of server side mechanism to write the data to disk.
我不知道在没有某种服务器端机制将数据写入磁盘的情况下将数据写回服务器的任何可行方法。
#2
0
Using the XMLHTTPRequest object you can modify an XML document using XSLT. Here's a sample article for getting started.
使用XMLHTTPRequest对象,您可以使用XSLT修改XML文档。这是一个入门的示例文章。
#3
-2
Yes it is possible. You can do it with pure javascript or using a library like jquery
对的,这是可能的。您可以使用纯JavaScript或使用像jquery这样的库来完成