programing

$router로 데이터를 전달하려면 어떻게 해야 합니까?Vue.js를 밀어넣을까요?

goodsources 2022. 8. 15. 21:40
반응형

$router로 데이터를 전달하려면 어떻게 해야 합니까?Vue.js를 밀어넣을까요?

Vue.js를 사용하여 CRUD 앱용 경고 컴포넌트를 만듭니다.데이터가 저장되면 다른 컴포넌트에 메시지를 전달하고 싶습니다.현재 이 데이터를 전달하려고 합니다.$router.push이것처럼.this.$router.push({path: '/', query: {alert: 'Customer Added'}})그런 다음 다른 구성 요소에서 이 데이터에 액세스합니다.그러나 이것은 예상대로 작동하지 않고 데이터가 URL로 전달됩니다.

이것은 데이터를 저장하는 컴포넌트 Add.vue입니다.

<template>
<div class="add container">
<Alert v-if="alert" v-bind:message="alert" />
<h1 class="page-header">Add Customer</h1>
<form v-on:submit="addCustomer">
    <div class="well">
        <h4>Customer Info</h4>
        <div class="form-group">
            <label>First Name</label>
            <input type="text" class="form-control" placeholder="First Name" 
            v-model="customer.first_name">
        </div>
        <div class="form-group">
            <label>Last Name</label>
            <input type="text" class="form-control" placeholder="Last Name" 
            v-model="customer.last_name">
        </div>
    </div>
    <div class="well">
        <h4>Customer Contact</h4>
        <div class="form-group">
            <label>Email</label>
            <input type="text" class="form-control" placeholder="Email" v-model="customer.email">
        </div>
        <div class="form-group">
            <label>Phone</label>
            <input type="text" class="form-control" placeholder="Phone" v-model="customer.phone">
        </div>
    </div>

    <div class="well">
        <h4>Customer Location</h4>
        <div class="form-group">
            <label>Address</label>
            <input type="text" class="form-control" placeholder="Address" v-model="customer.address">
        </div>
        <div class="form-group">
            <label>City</label>
            <input type="text" class="form-control" placeholder="City" v-model="customer.city">
        </div>
        <div class="form-group">
            <label>State</label>
            <input type="text" class="form-control" placeholder="State" v-model="customer.state">
        </div>
    </div>
    <button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</template>

<script>
import Alert from './Alert'
export default {
name: 'add',
data () {
    return {
    customer: {},
    alert:''
    }
},
methods: {
    addCustomer(e){
        if(!this.customer.first_name || !this.customer.last_name || 
!this.customer.email){
            this.alert = 'Please fill in all required fields';
        } else {
            let newCustomer = {
                first_name: this.customer.first_name,
                last_name: this.customer.last_name,
                phone: this.customer.phone,
                email: this.customer.email,
                address: this.customer.address,
                city: this.customer.city,
                state: this.customer.state
            }
            this.$http.post('http://slimapp.dev/api/customer/add', 
            newCustomer)
                .then(function(response){
                    this.$router.push({path: '/', query: {alert: 'Customer 
            Added'}})

                });
            e.preventDefault();
            }
            e.preventDefault();
            }
            },
            components: {
             Alert
            }
            }
            </script>

            <!-- Add "scoped" attribute to limit CSS to this component only 
            -->
            <style scoped>
            </style>

Alert 컴포넌트 Alert 입니다.표시하다

<template>
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span></button>
{{message}}
</div>
</template>

<script>
export default {
name: 'alert',
props: ['message'],
data () {
return {

}
}
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>

이 컴포넌트는 경고를 표시하는 컴포넌트입니다.고객님.표시하다

<template>
<div class="customers container">
<Alert v-if="alert" v-bind:message="alert" />
<h1 class="page-header">Manage Customers</h1>
<table class="table table-striped">
  <thead>
    <tr>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Email</th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <tr v-for="customer in customers">
      <td>{{customer.first_name}}</td>
      <td>{{customer.last_name}}</td>
      <td>{{customer.email}}</td>
      <td></td></tr>
  </tbody>
</table>

</div>
</template>

<script>
import Alert from './Alert';

export default {
name: 'customers',
data () {
return {

  customers: [],
  alert: ''

 }
},

methods: {
fetchCustomers(){
  this.$http.get('http://slimapp.dev/api/customers')
    .then(function(response){

      this.customers = (response.body); 
    });
  }
 },
created: function(){
 if (this.$route.params.alert) {
   this.alert = $route.params.alert
 }
 this.fetchCustomers();
},
updated: function(){
this.fetchCustomers();
},
components: {
  Alert
  }
}

이거 어떻게 풀어요?

원하는 방식으로 vue-router를 통해 데이터를 전달할 수 없습니다.다음과 같은 파라미터만 전달할 수 있습니다.

경로 정의:

{ path: '/products/:id/edit', name: 'products.edit', component: ProductForm },

그런 다음 매개 변수를 얻을 수 있습니다.this.$route.params.id

또는 다음 작업을 수행할 수 있습니다.

this.$router.push({name: 'products.index', params: { id: 1 }})

다음과 같은 GET 파라미터를 추가하는 것이 좋습니다.?success=true또는 새 루트를 푸시하기 전에 sweetalert를 사용하여 경보를 표시합니다.

언급URL : https://stackoverflow.com/questions/47556943/how-do-i-pass-data-in-router-push-in-vue-js

반응형