문제

I am trying to work around a validation error when trying to generate a URL to get to a view. I know I can get to the view these ways:

  1. https://contoso.sharepoint.com/Lists/ListName/ViewName.aspx
  2. https://contoso.sharepoint.com/Lists/ListName/AllItems.aspx?viewid=viewGUID

Is there any way to pass the name of the view as a parameter? So something like

도움이 되었습니까?

해결책

Per my test, generate link to list view by view name as parameter is not work in SharePoint.

다른 팁

That is not possible. The closest to fit your requirement would be to get the view url using the API:

https://contoso.sharepoint.com/_api/web/lists/getByTitle('ListName')/views/getByTitle('ViewName')?$select=ServerRelativeUrl
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top