こんにちは私は、chromeアプリケーションのjs内の関数からchrome.notifications.createを呼び出すときにエラーが発生します。機能外部から細かい使用されるが、関数の中で、私は次のエラーを取得する際にすることができます:chrome.notifications.createを使用するとエラーが発生しました。 "Uncaught TypeError:プロパティ 'create'が未定義です"
を:「キャッチされない例外TypeErrorをプロパティを読み取ることができません未定義の 『作成』」ここでは、コードです:
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('submit').addEventListener('click', submit);
});
function submit() {
var options = {
type:"basic",
title:"nameVal",
message:"msgVal",
iconUrl:"icon.png",
};
//notification options set
chrome.notifications.create(options,callback);
//notification set
}
function callback() {
console.log("Notification succesfull");
//notification confirmed
}
おかげで、私はそれがjsとクロムアプリになるとどんな助けにもなるので、私は騒ぎです。
あなたはまだ助けていただけますか –