046_Get URL
Posted BandariFang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了046_Get URL相关的知识,希望对你有一定的参考价值。
以上是关于046_Get URL的主要内容,如果未能解决你的问题,请参考以下文章
[__NSArray0 objectForKey:]: unrecognized selector sent to instance 0x7feb72d046b0' [closed]
Posted BandariFang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了046_Get URL相关的知识,希望对你有一定的参考价值。
以上是关于046_Get URL的主要内容,如果未能解决你的问题,请参考以下文章
[__NSArray0 objectForKey:]: unrecognized selector sent to instance 0x7feb72d046b0' [closed]
String baseURL = URL.getSalesforceBaseUrl().toExternalForm(); // it will return: < https://cs14.salesforce.com >
String PageURL = ApexPages.currentPage().getUrl(); // it will return: < /apex/myVFpage?id=906F00000008w9wIAA >
So to get your whole exact URL you can write:
String wholeURL = baseURL+PageURL; // it will return: < https://cs14.salesforce.com/apex/myVFpage?id=906F00000008w9wIAA >