第一个url参数与所有url地址混淆

时间:2017-05-29 18:48:27

标签: javascript angular http url-parameters

我在使用Angular 4的URLSearchParams类时遇到问题。 我尝试用两个参数分解网址:

remove_action( 'delete_attachment', 'wp_delete_attachment' );
add_action( 'delete_attachment', 'my_site_wp_delete_attachment'); 

这就是我在课堂上所做的事情:

http://localhost:4200/api/actions?uuid=63ieEB&action=signatureBlockClicked

但是,在interogation point之后的第一个参数是export default class MockActionResponse { static dispatcher(url, pageModules, ngRedux) { const params = new URLSearchParams(url); const action = params.get('action'); const uuid = params.get('uuid'); …………… ,因为null会以这种方式分析url。

enter image description here

1 个答案:

答案 0 :(得分:0)

@ankit_Saroch给了我答案。 我刚刚传递了没有基本网址的参数!