第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何使用 vue js 傳遞和檢索 id?

如何使用 vue js 傳遞和檢索 id?

C#
人到中年有點(diǎn)甜 2023-07-09 15:14:24
我正在嘗試將 id 從 1 vue 傳遞到另一個(gè) vue 并獲取我的 api 服務(wù)的數(shù)據(jù)。我能夠從第一個(gè) vue (ClientListing.vue) 傳遞 id,但不知何故我的第二個(gè) vue (Client.vue) 無(wú)法檢索 id。我的客戶列表.vue    <th scope="row" v-on:click="rowClicked(row)" style="cursor: pointer">        <div class="media align-items-center" @click="showClient(row)">          <a class="avatar rounded-circle mr-3">              <img alt="Image placeholder" :src="row.customerTypeIcon">          </a>          <div class="media-body">              <span class="name mb-0 text-sm">{{row.name}}</span>          </div>       </div>    </th>methods: {   showClient(item) {   router.push({ path: 'Clients/client', query: { id: item.id } });   }}我的客戶端.vuemounted: function () {   CifRepository   .getCustomerDetails(this.$route.query)   .then(response => {      this.model = response.data.Results;   }).catch(error => {   console.log(error)   this.errored = true}).finally(() => this.loading = false);}getCustomerDetails(id) {   return Repository.get("/api/Accounts/GetCustomerDetails");}我的 api 服務(wù) - AccountsController[HttpGet("GetCustomerDetails")]public async Task<CustomerListingDto> GetCustomerDetails(long id){   CustomerServiceModel customers = await   _accountService.GetCustomerDetailsByCustomerId(id);   return _mapper.Map<CustomerListingDto>(customers);}我的 AccountController/GetCustomerDetails 不斷獲取 0/null 值,并且無(wú)法從 ClientListing.vue 獲取 id 傳遞
查看完整描述

1 回答

?
吃雞游戲

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊

它應(yīng)該this.$route.query.id代替this.$route.query


mounted: function () {

  CifRepository

  .getCustomerDetails(this.$route.query.id)

  .then(response => {

    this.model = response.data.Results;

  })

  .catch(error => {

    console.log(error)

    this.errored = true

  })

  .finally(() => this.loading = false);

}


getCustomerDetails(id) {

   return Repository.get("/api/Accounts/GetCustomerDetails/" + id);

}

我不確定 C# 部分,但可能是


[HttpGet("GetCustomerDetails/${id}")]

public async Task<CustomerListingDto> GetCustomerDetails(long id)

{


   CustomerServiceModel customers = await

   _accountService.GetCustomerDetailsByCustomerId(id);


   return _mapper.Map<CustomerListingDto>(customers);

}


查看完整回答
反對(duì) 回復(fù) 2023-07-09
  • 1 回答
  • 0 關(guān)注
  • 157 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)