我使用了一段代码来检索指定内容类型的字段链接,并将该字段设置为必需或不需要。这很好用,但是当我尝试对名称中包含空格的字段执行相同操作时,代码会引发错误。
SPField col = //some column retrieved from a list
SPContentType ct = col.ParentList.ContentTypes["MyContentTypeName"] //gets the content type
SPFieldLink fieldLink = ct.FieldLinks["MyFieldname"]; // gets the fieldLink
ct.Update();
如果是像“Hobbies”或“Amount”这样的字符串,它会起作用MyFieldName
,但如果是像“Full Name”这样的字符串,它会失败。
有解决方法吗?