How to get last inserted id and save it to other table using Angular and Sequelize?Save runtime created table data into databaseHow to select a element in the clicked table row of a HTML table using Jquery?Cannot display HTML stringhow to show the data in a texbox in table?Sql special character to Html charactersform not adding input data into db tableinsert multiple data into mysql table in single form with codeigniterHow to get values from input boxes and save to database with button click angularGet data from input box and checkbox and save into database using AngularHow to get id from one table and save to another table using angular
How to compute the inverse of an operation in Q#?
Definition of 'vrit'
What preparations would Hubble have needed to return in a Shuttle?
How to make all magic-casting innate, but still rare?
Large-n limit of the distribution of the normalized sum of Cauchy random variables
How do you transpose samples in cents?
Why isn't my calculation that we should be able to see the sun well beyond the observable universe valid?
Synaptic Static - when to roll the d6?
Is Newton's third law really correct?
What mathematical theory is required for high frequency trading?
What is this plant I saw for sale at a Romanian farmer's market?
How to take photos with a yellowish tone and point-and-shoot film camera look?
reverse a call to mmap()
How is the idea of "girlfriend material" naturally expressed in Russian?
How "fast" do astronomical events occur?
What is the highest power supply a Raspberry pi 3 B can handle without getting damaged?
Why do you need to heat the pan before heating the olive oil?
What is the "ls" directory in my home directory?
Are intrusions within a foreign embassy considered an act of war?
Need help understanding the double sharp turn in Chopin's prelude in e minor
"Prove that ∂A is closed given ∂A = Cl(A) − Int(A)"
King or Queen-Which piece is which?
What is the most suitable position for a bishop here?
Why are there no file insertion syscalls
How to get last inserted id and save it to other table using Angular and Sequelize?
Save runtime created table data into databaseHow to select a element in the clicked table row of a HTML table using Jquery?Cannot display HTML stringhow to show the data in a texbox in table?Sql special character to Html charactersform not adding input data into db tableinsert multiple data into mysql table in single form with codeigniterHow to get values from input boxes and save to database with button click angularGet data from input box and checkbox and save into database using AngularHow to get id from one table and save to another table using angular
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
The situation is: I have one submit form with one input box and four checkboxes. I have two tables in a database.One table for input box records(called "reasons") and one table for checkbox records(called "reason_to_transaction"). When I click on submit button it checks if some of the checkboxes are checked and if the input box has some text and save the data from the input box and checkboxes into two different tables. Table "reasons" have two columns(id,name).Table "reasons_to_transaction" have two columns(reason id,transcation_type). The column from table(reasons_to_transaction) "transcation_type" save data from checkbox. The column from rable(reasons) save data from input box. How I can save data into the table("reaons_to_transaction") with id from table "reasons". My function now working but in "reason_id" is saving NULL. My code is:
How I can get last insert id in one table and save it into another table.
I'm using Angular Sequelize.
I have this code:
<form ng-submit="createReason(reasonsForm1.$valid)" name="reasonsForm1">
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<label for="database_address">??? ?? ?????????:</label>
<input type="text" class="form-control" ng-model="reasonname" placeholder="??? ????????? ?? ????????" />
</div>
<div class="container">
<p>???????? ?? ???:</p>
<ul>
<li ng-repeat="album in albums">
<input type="checkbox" ng-model="album.selected" value=album.name /> album.name
</li>
</ul>
<button type='button' ng-click="save1()">Save</button><br>
Saved results:<br>
albumNameArray
</div>
</div>
</div>
<button class="btn btn-primary" type="submit">Save</button>
<button class="btn btn-primary" id="cnlbtn1" type="button">Cancel</button>
<!--ng-click="createUser()"-->
<!--<button class="btn btn-primary" ng-disabled="userForm.$invalid" type="submit">???????? ?? ???</button>-->
</form>
$scope.createReason=function()
{
$scope.albumNameArray = [];
angular.forEach($scope.albums, function(album)
if (album.selected && album.name=="sell")
defaultAdapter.query('INSERT INTO reason_to_transaction(transaction_type) VALUES("sell") ',
/*replacements: objectToSave1,*/type:Sequelize.QueryTypes.UPDATE
)
$scope.refresh();
var objectToSave =
name: $scope.reasonname,
;
defaultAdapter.query('INSERT INTO reasons(name) VALUES(:name)',
replacements: objectToSave, type: Sequelize.QueryTypes.UPDATE
).then(projects =>
console.log(projects);
$scope.editMode = false;
$scope.activeItem = false;
$scope.refresh();
);
html angularjs
add a comment |
The situation is: I have one submit form with one input box and four checkboxes. I have two tables in a database.One table for input box records(called "reasons") and one table for checkbox records(called "reason_to_transaction"). When I click on submit button it checks if some of the checkboxes are checked and if the input box has some text and save the data from the input box and checkboxes into two different tables. Table "reasons" have two columns(id,name).Table "reasons_to_transaction" have two columns(reason id,transcation_type). The column from table(reasons_to_transaction) "transcation_type" save data from checkbox. The column from rable(reasons) save data from input box. How I can save data into the table("reaons_to_transaction") with id from table "reasons". My function now working but in "reason_id" is saving NULL. My code is:
How I can get last insert id in one table and save it into another table.
I'm using Angular Sequelize.
I have this code:
<form ng-submit="createReason(reasonsForm1.$valid)" name="reasonsForm1">
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<label for="database_address">??? ?? ?????????:</label>
<input type="text" class="form-control" ng-model="reasonname" placeholder="??? ????????? ?? ????????" />
</div>
<div class="container">
<p>???????? ?? ???:</p>
<ul>
<li ng-repeat="album in albums">
<input type="checkbox" ng-model="album.selected" value=album.name /> album.name
</li>
</ul>
<button type='button' ng-click="save1()">Save</button><br>
Saved results:<br>
albumNameArray
</div>
</div>
</div>
<button class="btn btn-primary" type="submit">Save</button>
<button class="btn btn-primary" id="cnlbtn1" type="button">Cancel</button>
<!--ng-click="createUser()"-->
<!--<button class="btn btn-primary" ng-disabled="userForm.$invalid" type="submit">???????? ?? ???</button>-->
</form>
$scope.createReason=function()
{
$scope.albumNameArray = [];
angular.forEach($scope.albums, function(album)
if (album.selected && album.name=="sell")
defaultAdapter.query('INSERT INTO reason_to_transaction(transaction_type) VALUES("sell") ',
/*replacements: objectToSave1,*/type:Sequelize.QueryTypes.UPDATE
)
$scope.refresh();
var objectToSave =
name: $scope.reasonname,
;
defaultAdapter.query('INSERT INTO reasons(name) VALUES(:name)',
replacements: objectToSave, type: Sequelize.QueryTypes.UPDATE
).then(projects =>
console.log(projects);
$scope.editMode = false;
$scope.activeItem = false;
$scope.refresh();
);
html angularjs
add a comment |
The situation is: I have one submit form with one input box and four checkboxes. I have two tables in a database.One table for input box records(called "reasons") and one table for checkbox records(called "reason_to_transaction"). When I click on submit button it checks if some of the checkboxes are checked and if the input box has some text and save the data from the input box and checkboxes into two different tables. Table "reasons" have two columns(id,name).Table "reasons_to_transaction" have two columns(reason id,transcation_type). The column from table(reasons_to_transaction) "transcation_type" save data from checkbox. The column from rable(reasons) save data from input box. How I can save data into the table("reaons_to_transaction") with id from table "reasons". My function now working but in "reason_id" is saving NULL. My code is:
How I can get last insert id in one table and save it into another table.
I'm using Angular Sequelize.
I have this code:
<form ng-submit="createReason(reasonsForm1.$valid)" name="reasonsForm1">
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<label for="database_address">??? ?? ?????????:</label>
<input type="text" class="form-control" ng-model="reasonname" placeholder="??? ????????? ?? ????????" />
</div>
<div class="container">
<p>???????? ?? ???:</p>
<ul>
<li ng-repeat="album in albums">
<input type="checkbox" ng-model="album.selected" value=album.name /> album.name
</li>
</ul>
<button type='button' ng-click="save1()">Save</button><br>
Saved results:<br>
albumNameArray
</div>
</div>
</div>
<button class="btn btn-primary" type="submit">Save</button>
<button class="btn btn-primary" id="cnlbtn1" type="button">Cancel</button>
<!--ng-click="createUser()"-->
<!--<button class="btn btn-primary" ng-disabled="userForm.$invalid" type="submit">???????? ?? ???</button>-->
</form>
$scope.createReason=function()
{
$scope.albumNameArray = [];
angular.forEach($scope.albums, function(album)
if (album.selected && album.name=="sell")
defaultAdapter.query('INSERT INTO reason_to_transaction(transaction_type) VALUES("sell") ',
/*replacements: objectToSave1,*/type:Sequelize.QueryTypes.UPDATE
)
$scope.refresh();
var objectToSave =
name: $scope.reasonname,
;
defaultAdapter.query('INSERT INTO reasons(name) VALUES(:name)',
replacements: objectToSave, type: Sequelize.QueryTypes.UPDATE
).then(projects =>
console.log(projects);
$scope.editMode = false;
$scope.activeItem = false;
$scope.refresh();
);
html angularjs
The situation is: I have one submit form with one input box and four checkboxes. I have two tables in a database.One table for input box records(called "reasons") and one table for checkbox records(called "reason_to_transaction"). When I click on submit button it checks if some of the checkboxes are checked and if the input box has some text and save the data from the input box and checkboxes into two different tables. Table "reasons" have two columns(id,name).Table "reasons_to_transaction" have two columns(reason id,transcation_type). The column from table(reasons_to_transaction) "transcation_type" save data from checkbox. The column from rable(reasons) save data from input box. How I can save data into the table("reaons_to_transaction") with id from table "reasons". My function now working but in "reason_id" is saving NULL. My code is:
How I can get last insert id in one table and save it into another table.
I'm using Angular Sequelize.
I have this code:
<form ng-submit="createReason(reasonsForm1.$valid)" name="reasonsForm1">
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<label for="database_address">??? ?? ?????????:</label>
<input type="text" class="form-control" ng-model="reasonname" placeholder="??? ????????? ?? ????????" />
</div>
<div class="container">
<p>???????? ?? ???:</p>
<ul>
<li ng-repeat="album in albums">
<input type="checkbox" ng-model="album.selected" value=album.name /> album.name
</li>
</ul>
<button type='button' ng-click="save1()">Save</button><br>
Saved results:<br>
albumNameArray
</div>
</div>
</div>
<button class="btn btn-primary" type="submit">Save</button>
<button class="btn btn-primary" id="cnlbtn1" type="button">Cancel</button>
<!--ng-click="createUser()"-->
<!--<button class="btn btn-primary" ng-disabled="userForm.$invalid" type="submit">???????? ?? ???</button>-->
</form>
$scope.createReason=function()
{
$scope.albumNameArray = [];
angular.forEach($scope.albums, function(album)
if (album.selected && album.name=="sell")
defaultAdapter.query('INSERT INTO reason_to_transaction(transaction_type) VALUES("sell") ',
/*replacements: objectToSave1,*/type:Sequelize.QueryTypes.UPDATE
)
$scope.refresh();
var objectToSave =
name: $scope.reasonname,
;
defaultAdapter.query('INSERT INTO reasons(name) VALUES(:name)',
replacements: objectToSave, type: Sequelize.QueryTypes.UPDATE
).then(projects =>
console.log(projects);
$scope.editMode = false;
$scope.activeItem = false;
$scope.refresh();
);
html angularjs
html angularjs
asked Mar 25 at 6:07
MitkoMitko
156
156
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55332066%2fhow-to-get-last-inserted-id-and-save-it-to-other-table-using-angular-and-sequeli%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55332066%2fhow-to-get-last-inserted-id-and-save-it-to-other-table-using-angular-and-sequeli%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown