Answer the question
In order to leave comments, you need to log in
How to insert data into WebSQL?
I'm making an app for Chrome.
WebSQL was chosen to store some of the data.
The base itself is created.
function baza (f) {
bd = openDatabase("linkDemo","1.0","Количество вкладок",1024*1024*5);
switch (f) {
case "open":
bd.transaction(function(tx){
tx.executeSql("CREATE TABLE IF NOT EXISTS todo (ID INTEGER PRIMARY KEY ASC,todo_item TEXT,due_date VARCHAR)");
})
break
case "save":
bd.transaction(function(tx){
tx.executeSql("INSERT INTO todo (todo_item,due_date) VALUES (?,?)", ["Яндкс","ya.ru"])
})
break
case "load":
// Загрузка из БД
default:
alert ('Не задано действие')
break
}
}
onload = function () {
// Некоторые действия при загрузки
baza ("open")
}
function savenewlink (){
// Сбор данных из формы
baza ("save") // и будут вноситься в функция
//А вот здесь самое интересное
// alert ('Закончили')
}
document.addEventListener( "DOMContentLoaded" , function () {
// Несколько других событий
document.getElementById("savelink").addEventListener( "click" , savenewlink);
});
Refused to execute inline event handler because it violates the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:".
Answer the question
In order to leave comments, you need to log in
As always: once you ask a question, the answer comes by itself.
The problem was elsewhere.
addEventListener() was attached to a tag which, when clicked, would cause the page to reload and eventually lose data.
alert() made it possible to enter data (although by what principle I'm not entirely clear) while the script was stopped.
I solved the problem by binding the event to the tag.
Let the gurus correct me if something is wrong.
Маркетолог спрашивает программиста: в чём сложность поддержки большого проекта?
Программист: ну представь, что ты писатель и поддерживаешь проект «Война и мир». У тебя ТЗ — написать главу, как Наташа Ростова гуляла под дождём по парку. Ты пишешь «шёл дождь», сохраняешь, вылетает сообщение об ошибке «Наташа Ростова умерла, продолжение невозможно». Почему умерла? Начинаешь разбираться. Выясняется, что у Пьера Безухова скользкие туфли, он упал, его пистолет ударился о землю и выстрелил в столб, а пуля от столба срикошетила в Наташу. Что делать? Зарядить пистолет холостыми? Поменять туфли? Решили убрать столб. Получаем сообщение «Поручик ржевский умер.» Выясняется, что он в следующей главе облокачивается о столб, которого уже нет…
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question