gpt4 book ai didi

javascript - 类型 'string | null' 不可分配给类型 'string' 。类型 'null' 不可分配给类型 'string'

转载 作者:行者123 更新时间:2023-12-05 02:01:22 26 4
gpt4 key购买 nike

错误:键入“字符串 | null' 不可分配给类型 'string'。类型“null”不可分配给类型“string”。错误:键入 '{ id?: string |不明确的;标题?:字符串 |不明确的;内容?:字符串 |不明确的; }' 不可分配给类型 'Post'。属性“id”的类型不兼容。输入'字符串| undefined' 不可分配给类型 'string'。类型“undefined”不可分配给类型“string”。

export interface Post{
id:string;
title:string;
content:string;
}
import { Component,OnInit} from '@angular/core';
import { NgForm } from '@angular/forms';
import { ActivatedRoute, ParamMap } from '@angular/router';
import { Post } from '../post.model';

import { PostsService } from '../posts.service';

@Component({
selector: 'app-post-create',
templateUrl: './post-create.component.html',
styleUrls: ['./post-create.component.css']
})
export class PostCreateComponent implements OnInit {

// newPost='No Content'
enteredTitle=''
enteredContent=''
private mode='create'
private postId:string
private post:Post
// postId: string | null | undefined;

constructor(public postsService:PostsService
,public route: ActivatedRoute){}

ngOnInit(){
this.route.paramMap.subscribe((paramMap:ParamMap)=>{
if(paramMap.has('postId')){
this.mode='edit'
this.postId=paramMap.get('postId')
this.post=this.postsService.getPost(this.postId)
}else{
this.mode='create'
this.postId="null";
}
});
}

onAddPost(form:NgForm){
if(form.invalid)
{
return
}
console.log((form.value.title,form.value.content));
this.postsService.addPost(form.value.title,form.value.content)

form.resetForm();

}
}

最佳答案

paramMap.get() 返回 string|null。由于您的变量严格属于字符串类型,因此 TS 显示错误。
您可以将 postId 的类型更改为 string|null
或者做这样的事情 this.postId=paramMap.get('postId') || '';

关于javascript - 类型 'string | null' 不可分配给类型 'string' 。类型 'null' 不可分配给类型 'string',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66636959/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com