× Requests and support related to jBackend.

Jbackend and Template Ionic Material

  • alphaa
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
8 years 9 months ago #5119 by alphaa
Replied by alphaa on topic Jbackend and Template Ionic Material
How to manipulate the field in the controller with a regular expression.
I have been trying this :
.filter('unsafe', function($sce) {
var re = /https?:\/\/(?:[0-9A-Z-]+\.)?(?:youtu\.be\/|youtube(?:-nocookie)?\.com\S*[^\w\s-])([\w-]{11})(?=[^\w-]|$)(?![?=&+%\w.-]*(?:['"][^<>]*>|<\/a>))[?=&+%\w.-]*/ig;
	
    return function(text) {
		
		 if(text.match(re)) {
            text = text.replace(re,
          '<iframe height="100%" width="100%" src="http://www.youtube.com/embed/$1" allowfullscreen></iframe>');
        }  return $sce.trustAsHtml(text);
    };

but nothing.
:/

Please Log in or Create an account to join the conversation.

More
8 years 9 months ago #5120 by admin
Replied by admin on topic Jbackend and Template Ionic Material
The approach is good, probably you just need to work on the "re" expression.

Please Log in or Create an account to join the conversation.

  • alphaa
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
8 years 9 months ago #5126 by alphaa
Replied by alphaa on topic Jbackend and Template Ionic Material
I still can not find a solution. I think my app can not read external url.
I have test this :
var fram = /<iframe\b[^<]*(?:(?!<\/iframe>)<[^<]*)*<\/iframe>/i;
  return function(text) {
		
		 if(text.match(fram)) {
            text = text.replace(fram, ' ');
        }
and the iframe has not displayed, which means that the problem does not come from here.
Or not ?!

Please Log in or Create an account to join the conversation.

More
8 years 8 months ago #5128 by admin
Replied by admin on topic Jbackend and Template Ionic Material
Sorry, but cannot say just looking at that code without a testbed...
The following user(s) said Thank You: alphaa

Please Log in or Create an account to join the conversation.

  • alphaa
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
8 years 8 months ago #5141 by alphaa
Replied by alphaa on topic Jbackend and Template Ionic Material
Thanks, i have solved the issue. i have change :
src=\"https://www.youtube.com/embed/...
.

Please Log in or Create an account to join the conversation.

More
8 years 8 months ago #5145 by admin
Replied by admin on topic Jbackend and Template Ionic Material
Thanks for sharing the solution here.

Please Log in or Create an account to join the conversation.

Time to create page: 0.167 seconds