問題描述
我正在嘗試加載使用 Backbone 構建的 Web 應用程序,它會提取本地存儲的 JSON 和 HTML 模板文件.我想知道 Chrome 打包應用是否可以通過使用某種get"/ajax 請求來加載這些文件?
I'm trying to load in a web app that I've built using Backbone and it pulls in JSON and HTML template files that are stored locally. I was wondering with Chrome packaged apps whether it's possible to load these files by using some sort of 'get'/ajax request?
目前我正在接受這個......
Currently I'm getting this...
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.
我找不到任何有關如何執行此操作的真實信息,因此非常感謝您的幫助!
I can't find any real information on how to do this so any help would be great thanks!
推薦答案
是的,這完全有可能,而且很簡單.這是一個工作示例.嘗試從這個開始,確認它有效,然后添加回您自己的代碼.如果您遇到障礙并想出一個比 XHR 是否適用于打包應用程序更具體的問題,您可能想問一個新問題.
Yes, it's totally possible, and it's easy. Here's a working sample. Try starting with this, confirm that it works, and then add back in your own code. If you hit a roadblock and come up with a more specific question than whether XHRs work in packaged apps, you might want to ask a new question.
manifest.json:
manifest.json:
{
"name": "SO 15977151 for EggCup",
"description": "Demonstrates local XHR",
"manifest_version" : 2,
"version" : "0.1",
"app" : {
"background" : {
"scripts" : ["background.js"]
}
},
"permissions" : []
}
background.js:
background.js:
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create("window.html",
{ bounds: { width: 600, height: 400 }});
});
window.html:
window.html:
<html>
<body>
<div>The content is "<span id="content"/>"</div>
<script src="main.js"></script>
</body>
</html>
main.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!
這篇關于在 Chrome 打包應用程序中通過 XHR 加載本地內容的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!