- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我是 Vue 的新手,过去一两周一直在学习。我似乎不知道如何获取 PhysicianProfile.vue 组件上的特定医生数据。我的模拟数据存储在商店中,我将该信息传递给 PhysicianListing.vue,这是我查看列表的主页(循环访问数据)。
在PhysicianFullListing.vue
中,我传递了一个医生 Prop ,它需要一个对象,并在PhysicianListing.vue
上构建列表卡。我设置了路由来构建 SEO 友好的 URL (/Physician/profile/firstName-lastName-designation
)。
我的问题是如何仅获取我当前在个人资料页面上查看的医生的数据?这看起来很简单,但我完全错过了我需要做的事情。对此的任何帮助将不胜感激。谢谢。
store/store.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export const store = new Vuex.Store({
state: {
physicians: [
{
id: 1,
name: 'Emily Been, MD',
firstName: 'Emily',
lastName: 'Been',
designation: 'MD',
specialty: 'Internal Medicine',
locationDistance: 14,
photo: 'https://placehold.it/75x75',
location: {
title: 'TriStar Centennial',
address: '2300 Patterson St',
city: 'Nashville',
state: 'TN',
zipCode: 37203
}
}, {
id: 2,
name: 'Lisa Gomez, MD',
firstName: 'Lisa',
lastName: 'Gomez',
designation: 'MD',
specialty: 'Internal Medicine',
locationDistance: 14,
photo: 'https://placehold.it/75x75',
location: {
title: 'TriStar Centennial',
address: '2300 Patterson St',
city: 'Nashville',
state: 'TN',
zipCode: 37203
}
}, {
id: 3,
name: 'Raymond Acevedo, MD',
firstName: 'Raymond',
lastName: 'Acevedo',
designation: 'MD',
specialty: 'Internal Medicine',
locationDistance: 14,
photo: 'https://placehold.it/75x75',
location: {
title: 'TriStar Centennial',
address: '2300 Patterson St',
city: 'Nashville',
state: 'TN',
zipCode: 37203
}
}, {
id: 4,
name: 'Christi Mancuso, MD',
firstName: 'Christi',
lastName: 'Mancuso',
designation: 'MD',
specialty: 'Internal Medicine',
locationDistance: 14,
photo: 'https://placehold.it/75x75',
location: {
title: 'TriStar Centennial',
address: '2300 Patterson St',
city: 'Nashville',
state: 'TN',
zipCode: 37203
}
}, {
id: 5,
name: 'Martin Mannings, MD',
firstName: 'Martin',
lastName: 'Mannings',
designation: 'MD',
specialty: 'Internal Medicine',
locationDistance: 14,
photo: 'https://placehold.it/75x75',
location: {
title: 'TriStar Centennial',
address: '2300 Patterson St',
city: 'Nashville',
state: 'TN',
zipCode: 37203
}
}
]
}
})
路由器/index.js
import Vue from 'vue'
import Router from 'vue-router'
import Axios from '@/components/Axios'
import VueResource from '@/components/VueResource'
import PhysicianListing from '@/components/PhysicianListing'
import ProgressSteps from '@/components/ProgressSteps'
import PhysicianProfile from '@/components/PhysicianProfile'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Axios',
component: Axios
},
{
path: '/resource',
name: 'VueResource',
component: VueResource
},
{
path: '/physicians',
name: 'physician-listing',
component: PhysicianListing
},
{
path: '/physicians/profile/:firstName-:lastName-:designation',
name: 'pd-profile',
component: PhysicianProfile
},
{
path: '/progress',
name: 'progress-steps',
component: ProgressSteps
}
]
})
PhysicianFullListing.vue可重用组件
<template>
<li class="pd-item">
<div class="pd-header d-flex align-items-start">
<div class="pd-number">{{physician.id}}</div>
<img :src="physician.photo" alt="" class="pd-photo rounded-circle mr-4">
<div class="pd-info">
<h2 class="pd-title">{{physician.name}}</h2>
<p>{{physician.specialty}}</p>
<p class="pd-location">
<span class="pd-miles">
<i class="material-icons">place</i> {{physician.locationDistance}} miles away
</span><br>
{{physician.location.title}}<br>
{{physician.location.address}},<br>
{{physician.location.city}}, {{physician.location.state}} {{physician.location.zipCode}}
</p>
</div>
</div>
<div class="pd-footer d-flex justify-content-between">
<div class="pd-rating">
<span class="material-icons star-rating">star</span>
<span class="material-icons star-rating">star</span>
<span class="material-icons star-rating">star</span>
<span class="material-icons star-rating">star</span>
<span class="material-icons star-rating">star</span>
</div>
<router-link v-bind:to="{name: 'pd-profile', params: {firstName: physician.firstName, lastName: physician.lastName, designation: physician.designation}}">
View Profile
</router-link>
</div>
</li>
</template>
<script>
export default {
name: 'physician-full-listing',
props: {
physician: Object
},
data () {
return {
msg: 'Physicians Full Listing'
}
}
}
</script>
PhysicianListing.vue重用组件
<template>
<div class="physician-listing">
<h1 class="mt-3 mb-3 text-center">{{msg}}</h1>
<physician-filters></physician-filters>
<physician-search></physician-search>
<div class="row">
<div class="pd-list-column col-4">
<p class="results-txt">Showing 1-5 of {{physicians.length}} results</p>
<ul class="pd-listing list-unstyled">
<physician-full-listing v-for="physician in physicians" :key="physician.id" :physician="physician"></physician-full-listing>
</ul>
<div class="fixed-action-btn">
<router-link to="/progress" class="btn-floating blue">
<i class="material-icons">arrow_downward</i>
</router-link>
</div>
</div>
<div class="col-8">
<google-map name="example"></google-map>
</div>
</div>
</div>
</template>
<script>
import GoogleMap from '@/components/GoogleMap'
import PhysicianFilters from '@/components/physicians/PhysicianFilters'
import PhysicianSearch from '@/components/physicians/PhysicianSearch'
import PhysicianFullListing from '@/components/physicians/PhysicianFullListing'
export default {
name: 'physician-listing',
components: {
PhysicianFullListing,
GoogleMap,
PhysicianFilters,
PhysicianSearch
},
data () {
return {
msg: 'Make an Appointment',
}
},
computed: {
physicians() {
return this.$store.state.physicians
}
}
}
</script>
PhysicianProfile.vue
<template>
<div class="physician-profile">
<h1 class="mb-5">{{ msg }}</h1>
</div>
</template>
<script>
export default {
name: 'pd-profile',
data () {
return {
msg: 'Physician Profile'
}
}
}
</script>
最佳答案
首先,通过将 props: true
添加到您的路由对象,您可以将路由参数作为 props 传递给您的 PhysicianProfile 组件
{
path: '/physicians/profile/:firstName-:lastName-:designation',
name: 'pd-profile',
component: PhysicianProfile,
props: true
},
然后你可以将这三个属性添加到你的 PhysicianProfile 组件中,并设置一个 Vuex getter 来获取医生:
getters: {
// ...
getPhysicianByDetails: (state) => (firstName, lastName, designation) => {
return state.physicians.find(phys => phys.firstName === firstName && phys.lastName === lastName && phys.designation === designation)
}
}
查看这些内容以进一步阅读
https://medium.com/vue-by-example/learn-quickly-passing-params-as-props-with-vue-router-f4905735b747
关于javascript - 使用路线时从 vuex 存储获取特定数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51327763/
NHibernate version: 3.3.2. 我有一个包含多个操作的 NHibernate 事务。作为事务中的中间步骤之一,我尝试通过 Session.Save 插入一个具有自动增量 PK 的
请参阅我有一个具有多个值的 HashSet,该值可以包含例如 4141234567 、 4241234567 _0x10456790719 4141234567 _0x104567907907 和 _
我有一个 javafx 应用程序,我有一个主界面,我可以在其中设置我的舞台并启动该应用程序。我还有一个 Controller 类: public class Controller { @
我正在编写一个与 Web 服务集成的 iPhone 应用程序。我将从网络服务获取数据并用它填充表格 View 。我的问题:当用户滚动表格 View 时,我希望从 Web 服务动态加载更多数据并填充表格
我有以下结构: PreProd > Variables.tf 具有: variable "vms" { default = [ { "hostname" : "Monitor0
我下面有一个 Shiny 的应用程序,它显示绘图或表格。我对表格不感兴趣,我的问题只涉及 plotly 部分。当我使用此 javascript solution 在浏览器中打开应用程序时,我尝试下载该
我目前正在学习如何在 Java 中使用 Swing。将 JTextFields、JLabels 或 JButtons 添加到 JPanel 时,我通常用 4 行来完成,如下所示: gbc.gridx
我有一个名为 TabView 的自定义 UIView 类。每个 TabView 中都有 2 个标签以及一些其他元素。我使用界面生成器将这些标签添加到 TabView 中。在将 TabViews 作为
class A{ private List list; // getter setter public class B{ @command public void dele
当计时器达到零时,我试图从 Pane 中删除元素,更具体地说是标签和文本区域。但是,当计时器达到 0 并且我调用此方法时,我收到此异常。 Exception in thread "AWT-EventQ
使用 LINQ 时我应该从 WCF 服务返回什么?例如: var res = from q in context.cust select q; LINQ 遵循延迟执行,因此语句在运
我有一个计时器,可以在 GameScene.swift 文件中启动/重置,但是当应用程序在通话期间最小化或按下主页按钮时,它会继续运行。如何停止计时器并在应用程序再次处于事件状态时继续计时器? if
我有以下 Java 程序,但我不想在最后一个元素之后分配“,”,怎么办? String range = "400-450"; Integer startRange = null;
我正在使用 SAX 来解析一些 XML。在我的处理程序中 startElement()方法我正在尝试读取名为 xsi:type 的属性的值,例如: String type = attributes.g
我正在从事一个项目,该项目必须将数据从 Excel 文件导入和导出到数据库等。我必须从数据库获取数据,然后。但是如何根据 id、电话号码、用户名检查 excel 文件中的数据是否不重复。这是读取exc
我需要 Hook 程序的日志记录功能并获取它的日志记录参数,它使用 sqlite3_prepare_v2 -> sqlite3_bind_xxx -> sqlite3_step 函数。我想知道是否有可
您好,我正在尝试创建一个画笔,但我在使用 SelectObject 这行代码时遇到了问题: Brush_C = SelectObject(hdc_TS, hBrush); 错误是这样的: line 2
我正在尝试制作一个用户可以登录并将其用户数据保存到 mysql-db 的应用程序。我正在使用 PreferenceActivity 和 PreferenceFragment 来处理这个问题。通常这工作
我们使用自定义标签代码在 Google map 中添加带有标签的标记,还使用 MarkerCluster 库对标记进行聚类。 我们的问题是标记隐藏了,但标签仍然显示。我们需要修改http://go
我有一个包含 3 列的 CSV 文件;文本,整数,文本。当我导入这些时,所有数据都包含在双括号中。我不确定为什么。是否可以使用 COPY 在导入时删除这些内容?或者我应该导入为文本,然后使用 sele
我是一名优秀的程序员,十分优秀!