Closed. This question needs to be more focused。它当前不接受答案。
想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
3年前关闭。
如何在angular js中创建一个待办事项列表,以文件形式以文件形式存储待办事项列表在计算机系统中?
我已经尝试过使用http服务:获取和发布。但是我这样做时会出错。
待办事项列表存储在Web存储中,但不存储在计算机中
想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
3年前关闭。
如何在angular js中创建一个待办事项列表,以文件形式以文件形式存储待办事项列表在计算机系统中?
我已经尝试过使用http服务:获取和发布。但是我这样做时会出错。
待办事项列表存储在Web存储中,但不存储在计算机中
最佳答案
这将允许您右键单击并另存为JSON文件。
然后,您可以在计算机上使用所述文件,或将其上传到相同或另一个网站:
//Reference a tag
var link = document.getElementById("downloadLink");
//Dummy data todos
var todos = [{
name: 1,
text: "hello world"
},{
name: 2,
text: "hello world"
}];
//Create download link
link.setAttribute("href", 'data:text/json,' + JSON.stringify(todos))
<a id="downloadLink" href="#nuthinYet" target="_blank" download="test.json">download</a>
关于javascript - 创建待办事项列表Web应用程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41299233/
10-10 02:47