Error when jumping page on iOS

No response or blank screen when registering the button from the login point

This is the error message reported by the mobile phone:

[vue-router] Failed to resolve async component default: SyntaxError: Invalid regular expression: invalid group specifier name

[vue-router] uncaught error during route navigation:

 

 I searched for two warnings on the Internet and found nothing, and then searched for the message: invalid group specifier name in Error

I saw an article like this: https://developers.weixin.qq.com/community/develop/doc/000242268685609895f8c085b58400

Only then did I know that it was a regular problem on the page to be redirected. There are many forms in the registration page, and there are many regular ones. I know through the investigation that it is? <. It is normal to delete it. Replace

What do you mean by? =,? <=,?!,? <! =

1. `` `? =` ``: Ask if the thing that follows is equal to this /b(?=a)/.test('bab ')

2. `` `? <=` ``: Ask whether to start with this thing /(?<=a)b/.test('ab ')

3. `` `?!` ``: Ask if the thing that follows is not this /b(?!a)/.test('bb ')

4. `` `? <! =` ``: Ask if it does not start with this thing /(?<!=a)b/.test('bb ')

Reference:
Author: But just from the heart
link: https://www.jianshu.com/p/661af704198c

 
 

 

Guess you like

Origin www.cnblogs.com/wuyufei/p/12710340.html