recommend-detail.component.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import { Component } from '@angular/core';
  2. // 引入服务
  3. import { ActivatedRoute } from '@angular/router';
  4. // 引入Parse第三方库
  5. import * as Parse from "parse"
  6. (Parse as any).serverURL = "http://web2023.fmode.cn:9999/parse"
  7. Parse.initialize("dev")
  8. @Component({
  9. selector: 'app-recommend-detail',
  10. templateUrl: './recommend-detail.component.html',
  11. styleUrls: ['./recommend-detail.component.scss']
  12. })
  13. export class RecommendDetailComponent {
  14. comments: string[] = []
  15. comment: string = ''
  16. currentDate = new Date()
  17. addComment() {
  18. console.log(this.comment)
  19. if (this.comment.trim() !== '') {
  20. this.comments.push(this.comment);
  21. this.comment = '';
  22. }
  23. }
  24. //预设值变量
  25. recommend: Parse.Object | undefined;
  26. // 依赖注入
  27. constructor(private route: ActivatedRoute) {
  28. // 查询参数获取并赋值给this.recommend
  29. this.route.queryParams.subscribe(params => {
  30. this.getViewInfoById(params["id"])
  31. })
  32. }
  33. async getViewInfoById(id: string) {
  34. let query = new Parse.Query("HrmRecommend")
  35. this.recommend = await query.get(id)
  36. }
  37. }