I am developing winrt 8.1 app with webview component. I am using angular on the webview content. I have a problem with setting the image (html control) source as angular binding...The source is injected by angular controller and I get this prefix in the inage src: Prefix: "unsafe:ms-local-stream://01010101-0101-0101-0101-0101010101212_64656d6f32" Full path: unsafe:ms-local-stream://01010101-0101-0101-0101-0101010101212_64656d6f32/test.png. If I am changing the path to the "test.png" manually (removing the "unsafe" prefix), with the DOM Explorer - then the image appears. But when it's injected I get this prefix that shows no image since the path is not found on the LocalFolder. how can I disable this behavior?
The image source is injected by angular. If the source is static : It works, but as the same src replaced with injection , it gets this prefix... Usually webview is very restricted with dynamic content, i had problems with dynamic html injection when I used Angular on WinJS.