SharePoint 中注释字段允许的最大字符数是多少?
文本字段 (SPFieldText) 的限制为255 个字符。 备注字段的限制(如果有) (SPFieldMultiLineText )? MSDN 上的相关文档(上面链接)没有列出这些限制。
A Text field (SPFieldText) has a limit of 255 characters. What, if any, is the limit of the Note field (SPFieldMultiLineText)? The associated documentation on MSDN (linked above) doesn't list these limitations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,根据文档,注释字段与类型设置为注释的字段相同。 这相当于 SQL Server 中的 nText 字段。 以下是文档中该字段的限制:
以下是链接:
您链接的页面:
spFieldMultilineText
在那一页上写着
点击 Field 元素的链接后,您将转到 Field 元素
输入属性,我们看到这个:
特别感兴趣的是“...对应于 ntext SQL 数据类型...”
快速谷歌搜索“ntext SQL 数据类型”可将您带到nText
Well, according to the documentation, the notes field is the same as a field with the type set to note. That is equivalent to the nText field in SQL Server. Here is the limit for that field from the docs:
Here are the links:
The page that you linked:
spFieldMultilineText
On that page it states
Following the link to the Field element takes you to Field Element
Looking at the Type property, we see this:
Specifically of interest is "...Corresponds to the ntext SQL data type..."
A quick google for "ntext SQL data type" takes you to nText