Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

sharepoint online - How do I select hyperlink field from sahrepoint list using pnp sp?

Here's my code to fetch feature with tools

await sp.web.lists
  .getByTitle('Feature Tools Points')
  .items.select("Id", "Title", "Order", "Tools/Title", "Tools/Id", "Tools/LinkUrl", "Tools/Icon", "Tools/Order")
  .expand("Tools")
  .get()

But, it gives me an error that Tools/LinkUrl is invalid query. I didn't find anything on how to solve this. I think its because hyperlink urls have multiple values. But, I don't know hot to fix this error and get the LinkUrl field.

question from:https://stackoverflow.com/questions/65844405/how-do-i-select-hyperlink-field-from-sahrepoint-list-using-pnp-sp

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...