我想将iframe myHandler :: Handler Text
myHandler = do
let [x1, x2, x3] = map (liftMapE strToServantErr) [f, g, h] -- [Handler Int]
tmp <- a <$> x1 <*> x2 <*> x3 -- IO (Either SomeError Text)
eitherResult <- liftIO $ tmp
liftMapE someErrorToServantErr eitherResult
where liftMapE f = withExceptT f . liftEither
加载到名为cdnsite.com
我想在我的differentsite.com
iframe中为CDN_CREDENTS
的Cookie设置一些凭据
同样cdnsite.com
将实现我的脚本differentsite.com
,
我想知道的是,因为Cookie已在cdnsite.com/cdn.js
中设置,所以我可以在从标题中加载cdnsite.com
时从标题中读取CDN_CREDENTS
个Cookie。
我也可以在cdnsite.com/cdn.js
通过标题从我的后端加载时使用cdnsite.com/cdn.js
域
感谢