0

在基于标准浏览器的应用程序中遇到一些限制后,我决定将其转换为不使用浏览器的 chrome 应用程序。

以下是所有相关部分。我要解决的问题是为在浏览器中工作但在应用程序架构下不起作用的按钮添加负载侦听器。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>POS Data Entry Sheet</title>
<link href="./POS.css" rel="stylesheet" type="text/css" />
<script src="./POS.js"></script>
<script src="./POS.underDevelopment.js"></script>
<script src="./POS.generateTable.js"></script>
<script src="./POS.menu.js"></script>
<script src="./POS.portion.js"></script>
<script src="./POS.formula.js"></script>
<script src="./POS.dialog.js"></script>
</head>

<body>
<script>
   addLoadListener(addHandlerForLoginButton);
</script>

<section id="login">
<h1>Please login:</h1>

<p>
   <label>User ID:</label><input type="text" id="userID">
   <label>Password:</label><input type="password" id="password">
   <button type="submit" id="loginButton">Login</button>
</p>
</section>

<div id="main"></div>  <!--Everything gets attached to this div.-->

</body>
</html>

上面的一切都通过浏览器工作。我创建了清单:

{
  "name": "Point of Sale System",
  "description": "Dual currency Point of Sale System",
  "version": "0.1",
  "app": {
    "background": {
      "scripts": ["POS.dialog.js",
                  "POS.formula.js",
                  "POS.generateTable.js",
                  "POS.js",
                  "POS.menu.js",
                  "POS.portion.js",
                  "POS.underDevelopment.js",
                  "background.js"]
    }
  }
}

这是我对 background.js 的第一次尝试。它打开了基本页面,但内联脚本不起作用。

chrome.app.runtime.onLaunched.addListener(function() {
   chrome.app.window.create('POS.html', {
      'bounds': {
      'width': screen.availWidth,
      'height': screen.availHeight
      }
   });
});

所以,我注释掉了内联脚本并尝试添加一个回调函数这也不起作用。根据调试工具没有记录任何事件监听器。

chrome.app.runtime.onLaunched.addListener(function() {
   chrome.app.window.create('POS.html', {
      'bounds': {
      'width': screen.availWidth,
      'height': screen.availHeight
      }
   }, function(win) {win.addEventListener('load', addHandlerForLoginButton, false);});
});

在尝试了我能想到的一切几个小时后,我不知所措。为什么原来的行内脚本不起作用,为什么回调在 Chrome App 架构中不起作用?

4

1 回答 1

1

我认为您遇到了 CSP 问题,它不允许内联脚本或脚本块。有关详细信息,请参阅http://developer.chrome.com/apps/contentSecurityPolicy.html

您应该能够通过简单地创建一个page.js文件(通过script src='page.js'标签包含它)来转换您的第一次尝试,并将脚本块的内容放入其中:

addLoadListener(addHandlerForLoginButton);

您的第二个版本不起作用,因为win回调的参数不是 DOM 窗口,而是AppWindow. 它有一个通过contentWindow属性附加的 DOM 窗口,有关详细信息,请参阅http://developer.chrome.com/apps/app_window.html#type-AppWindow

最后,您不需要在清单app.background.scripts字段中列出所有这些脚本,只需列出后台脚本即可background.js。当您打开页面时,将根据需要加载其他内容。

于 2013-08-05T09:59:57.837 回答