gpt4 book ai didi

ajax - 在 Chrome 打包应用中通过 XHR 加载本地内容

转载 作者:行者123 更新时间:2023-12-04 17:51:10 27 4
gpt4 key购买 nike

我正在尝试加载我使用 Backbone 构建的 Web 应用程序,它会提取本地存储的 JSON 和 HTML 模板文件。我想知道 Chrome 打包的应用程序是否可以通过使用某种“get”/ajax 请求来加载这些文件?

目前我得到这个......

OPTIONS chrome-extension://fibpcbellfjkmapljkjdlpgencmekhco/templates/templates.html Cannot make any requests from null. jquery.min.js:2
XMLHttpRequest cannot load chrome-extension://fibpcbellfjkmapljkjdlpgencmekhco/templates/templates.html. Cannot make any requests from null.

我找不到有关如何执行此操作的任何真实信息,因此非常感谢!

最佳答案

是的,这是完全可能的,而且很容易。这是一个工作示例。尝试从这个开始,确认它有效,然后添加回您自己的代码。如果您遇到障碍并提出比 XHR 是否适用于打包应用程序更具体的问题,您可能想提出一个新问题。

list .json:

{
"name": "SO 15977151 for EggCup",
"description": "Demonstrates local XHR",
"manifest_version" : 2,
"version" : "0.1",
"app" : {
"background" : {
"scripts" : ["background.js"]
}
},
"permissions" : []
}

背景.js:
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create("window.html",
{ bounds: { width: 600, height: 400 }});
});

窗口.html:
<html>
<body>
<div>The content is "<span id="content"/>"</div>
<script src="main.js"></script>
</body>
</html>

主要.js:
function requestListener() {
document.querySelector("#content").innerHTML = this.responseText;
};

onload = function() {
var request = new XMLHttpRequest();
request.onload = requestListener;
request.open("GET", "content.txt", true);
request.send();
};

内容.txt:
Hello, world!

关于ajax - 在 Chrome 打包应用中通过 XHR 加载本地内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15977151/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com