# bei der Tag-Ausgabe hinzugefügt

This commit is contained in:
Xenia Gruenzinger 2019-06-27 10:56:34 +02:00
parent 156ec36d1e
commit d45ab87a8b

View File

@ -1,8 +1,8 @@
var tagArray = []; var tagArray = [];
const data=[ const data=[
'#th', 'th',
'#efi', 'efi',
'#wichtig', 'wichtig',
]; ];
const CreateMsgRouter = { const CreateMsgRouter = {
template: ` template: `
@ -38,8 +38,6 @@ const CreateMsgRouter = {
<b-button @click="$router.go(-1)">ABBRECHEN</b-button> <b-button @click="$router.go(-1)">ABBRECHEN</b-button>
<b-button type="is-primary" @click="createMsg">SENDEN</b-button> <b-button type="is-primary" @click="createMsg">SENDEN</b-button>
</div> </div>
`, `,
data: function () { data: function () {
@ -114,7 +112,7 @@ const CreateMsgRouter = {
function get_insert_tag(id){ function get_insert_tag(id){
$.ajax({ url: "api/tag/"+id, method: "GET" }).done(function (tag) { $.ajax({ url: "api/tag/"+id, method: "GET" }).done(function (tag) {
data.push(tag.name); data.push("#"+tag.name);
console.log("it worked!"); console.log("it worked!");
}).fail(function (e, f, g) { }).fail(function (e, f, g) {
console.log("cannot load " + id + ".json: " + e + f + g); console.log("cannot load " + id + ".json: " + e + f + g);