我很确定我的更新代码也是不正确的,如果有人可以告诉我如何将一个电话号码和出生数据实现到一个很棒的表格中。真的很难让一切顺利。
$('.toggler_btn').on('click', function (event) {
var id = $(this).attr('data-id');
if ($(this).text() === '+') {
$.ajax({
url: '/List/GetSubItems',
type: 'POST',
dataType: 'json',
data: '{"id":"' + id + '"}',
contentType: 'application/json; charset=utf-8',
success: function (data) {
$('.element_wrapper [data-id="' + id + '"]').html(data);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("responseText=" + XMLHttpRequest.responseText + "\n textStatus=" + textStatus + "\n errorThrown=" + errorThrown);
}
});
$(this).html('-');
}
else $(this).html('+');
});
答案 0 :(得分:0)
尝试以下查询并将您的brith日期保存在String中,您只需要输入它
private static final String TABLE_CREATE ="CREATE TABLE contacts ( id INTEGER PRIMARY KEY AUTOINCREMENT, forename TEXT," +
" surname TEXT, uname TEXT, pass TEXT, DOB TEXT, contact_number INTEGER )";